diff options
-rw-r--r-- | bot/exts/halloween/timeleft.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/bot/exts/halloween/timeleft.py b/bot/exts/halloween/timeleft.py index ef436057..47adb09b 100644 --- a/bot/exts/halloween/timeleft.py +++ b/bot/exts/halloween/timeleft.py @@ -50,8 +50,11 @@ class TimeLeft(commands.Cog): if self.in_hacktober(): minutes = seconds // 60 hours, minutes = divmod(minutes, 60) - await ctx.send(f"There are {days} days, {hours} hours and {minutes}" - " minutes left until the end of Hacktober.") + + await ctx.send( + f"There are {days} days, {hours} hours and {minutes}" + f" minutes left until the end of Hacktober." + ) else: start_diff = start - now start_days = start_diff.days |