Skip to content

Commit 459b81d

Browse files
committed
format
1 parent 68bc573 commit 459b81d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

bot.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,9 @@ async def on_ready(self):
565565
logger.line()
566566

567567
for recipient_id, items in tuple(closures.items()):
568-
after = (datetime.fromisoformat(items["time"]).astimezone(timezone.utc) - discord.utils.utcnow()).total_seconds()
568+
after = (
569+
datetime.fromisoformat(items["time"]).astimezone(timezone.utc) - discord.utils.utcnow()
570+
).total_seconds()
569571
if after <= 0:
570572
logger.debug("Closing thread for recipient %s.", recipient_id)
571573
after = 0

0 commit comments

Comments
 (0)