updates to structure

This commit is contained in:
2024-03-08 14:35:12 -07:00
parent 953ee6f1c2
commit 79764c9d1c
4 changed files with 47 additions and 1 deletions

View File

@@ -1,3 +1,5 @@
#!/usr/bin/env python3
from datetime import datetime, timedelta
def calculate_reach_date(current_hours, max_hours, hours_added_bi_weekly):
@@ -40,4 +42,4 @@ reach_date = calculate_reach_date(current_hours, MAX_HOURS, HOURS_ADDED_BI_WEEKL
# Output
print(f"Current date: {datetime.now().strftime('%Y-%m-%d')}")
print(f"You will reach the maximum hours on: {reach_date.strftime('%Y-%m-%d')}")
print(f"You will reach the maximum hours on: {reach_date.strftime('%Y-%m-%d')}")