Fix logic

This commit is contained in:
Nick Mowen 2023-10-17 07:56:09 -06:00
parent b07f93a2cb
commit 76112b1e63

View File

@ -266,6 +266,6 @@ def find_by_key(dictionary, target_key):
def get_tomorrow_at_2() -> datetime.datetime:
tomorrow = datetime.datetime.now() + datetime.timedelta(days=1)
tomorrow.hour = 2
tomorrow.replace(hour=2, minute=0, second=0)
return tomorrow