From bc07ad0b13f77f9579970fa1b9dba393e3ff9769 Mon Sep 17 00:00:00 2001 From: Arjun Satarkar Date: Thu, 21 Dec 2023 15:03:42 +0530 Subject: Format with black --- question_of_the_day/question_of_the_day.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'question_of_the_day/question_of_the_day.py') diff --git a/question_of_the_day/question_of_the_day.py b/question_of_the_day/question_of_the_day.py index ca3bb5b..1704214 100644 --- a/question_of_the_day/question_of_the_day.py +++ b/question_of_the_day/question_of_the_day.py @@ -78,7 +78,9 @@ class QuestionOfTheDay(commands.Cog): last_posted_datetime = datetime.datetime.fromtimestamp( last_posted_time, datetime.timezone.utc ) - if not (hour == last_posted_datetime.hour and minute == last_posted_datetime.minute): + if not ( + hour == last_posted_datetime.hour and minute == last_posted_datetime.minute + ): await post_qotds_for_time(hour, minute) gap_secs = current_time - (last_posted_time or current_time) -- cgit v1.2.3-57-g22cb