From 87248bc224e9def07c6f58636247a96c8244ef02 Mon Sep 17 00:00:00 2001 From: Damien De Paoli Date: Sat, 16 Aug 2025 10:36:14 +1000 Subject: [PATCH] adjust after trip, likely end mid Sept? --- countdown.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/countdown.py b/countdown.py index fe65c36..108a74c 100755 --- a/countdown.py +++ b/countdown.py @@ -16,14 +16,14 @@ def count_business_days(start_date, end_date): # Get the current date and the target date now = datetime.now() -target_date = datetime(now.year, 4, 8) +target_date = datetime(now.year, 9, 17) -# Adjust the target year if April 8 is in the next year +# Adjust the target year if Sept 17 is in the next year if now > target_date: target_date = target_date.replace(year=now.year + 1) # Calculate the number of business days remaining remaining_business_days = count_business_days(now, target_date) -print(f"Business days remaining until April 8: {remaining_business_days}") +print(f"Business days remaining until Sep 17: {remaining_business_days}")