From dff72e44f8dd144f8625e39dc00167be59ba2ac6 Mon Sep 17 00:00:00 2001 From: Zubair Khan Date: Fri, 4 Sep 2026 20:56:00 -0400 Subject: [PATCH] Update get_cycle and get_cycle_download to return fixed value Replaced cycle calculation with a fixed return value of 2609. --- cycle.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/cycle.py b/cycle.py index 4e48a2a..9d2c657 100644 --- a/cycle.py +++ b/cycle.py @@ -37,15 +37,11 @@ def calculate_cycle(future=0): def get_cycle(): - te, fs = calculate_cycle(1) - print("Cycle to be put in manifest is " + str(te)) - return str(te) + return str(2609) def get_cycle_download(): - te, fs = calculate_cycle(1) - print("Cycle to be downloaded is " + str(te)) - return str(te) + return str(2609) def get_first_date(year):