We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68bc573 commit 459b81dCopy full SHA for 459b81d
bot.py
@@ -565,7 +565,9 @@ async def on_ready(self):
565
logger.line()
566
567
for recipient_id, items in tuple(closures.items()):
568
- after = (datetime.fromisoformat(items["time"]).astimezone(timezone.utc) - discord.utils.utcnow()).total_seconds()
+ after = (
569
+ datetime.fromisoformat(items["time"]).astimezone(timezone.utc) - discord.utils.utcnow()
570
+ ).total_seconds()
571
if after <= 0:
572
logger.debug("Closing thread for recipient %s.", recipient_id)
573
after = 0
0 commit comments