Skip to content

Commit

Permalink
Fix: Comment removed from code to fix lint failure
Browse files Browse the repository at this point in the history
  • Loading branch information
afalam359 committed Jan 3, 2025
1 parent e32096f commit 7f8c40b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ def main(
def get_dates() -> typing.List[str]:
today = datetime.datetime.now()
if today.month == 1:
start_date = datetime.datetime(today.year - 1, 12, 1) # December of the previous year
start_date = datetime.datetime(today.year - 1, 12, 1)
else:
start_date = datetime.datetime(today.year, today.month - 1, 1) # Previous month
start_date = datetime.datetime(today.year, today.month - 1, 1)
end_date = today
delta = datetime.timedelta(days=1)
dates = []
Expand Down

0 comments on commit 7f8c40b

Please sign in to comment.