Skip to content

Commit

Permalink
Fix typo in log message (#497)
Browse files Browse the repository at this point in the history
This PR corrects a small typo in a log message
  • Loading branch information
harisang authored Jan 21, 2025
1 parent dc27aeb commit cdc8054
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/data_sync/sync_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,7 @@ def __init__(self) -> None:
self.end_time = datetime.datetime(
current_time.year, current_time.month, 1
) + relativedelta(months=1)
log.info(
f"No start time set, using beginning of next month {self.end_time}."
)
log.info(f"No end time set, using beginning of next month {self.end_time}.")
else:
self.end_time: datetime.datetime = arguments.end_time
self.start_time = self.start_time.replace(tzinfo=datetime.timezone.utc)
Expand Down

0 comments on commit cdc8054

Please sign in to comment.