v0.1.2 #60

Merged
profitroll merged 23 commits from dev into main 2024-05-31 00:46:09 +03:00
Showing only changes of commit 3f20fdb46a - Show all commits

View File

@ -22,13 +22,13 @@ async def command_upcoming(app: PyroClient, message: Message):
) )
return return
date_min = pytz.utc.localize( date_min = (
datetime.now(user.location.timezone).replace(second=0, microsecond=0) datetime.now(user.location.timezone).replace(second=0, microsecond=0)
) ).replace(tzinfo=pytz.utc)
date_max = pytz.utc.localize( date_max = (
datetime.now(user.location.timezone).replace(second=0, microsecond=0) datetime.now(user.location.timezone).replace(second=0, microsecond=0)
+ timedelta(days=30) + timedelta(days=30)
) ).replace(tzinfo=pytz.utc)
entries = [ entries = [
await GarbageEntry.from_record(entry) await GarbageEntry.from_record(entry)