aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/christmas/adventofcode.py
diff options
context:
space:
mode:
authorGravatar MarkKoz <[email protected]>2020-07-14 12:15:01 -0700
committerGravatar MarkKoz <[email protected]>2020-07-14 12:15:01 -0700
commita1c1a9442730c20364d3765f3d4de64c4fd8ce36 (patch)
treeb52d36199e7722529e27322e76eeeb0c9a6d98c4 /bot/exts/christmas/adventofcode.py
parentUpdate dev dependency version pins (diff)
Remove redundant f-strings
This fixes a new lint error (F541) introduced by flake8 3.8.
Diffstat (limited to 'bot/exts/christmas/adventofcode.py')
-rw-r--r--bot/exts/christmas/adventofcode.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/christmas/adventofcode.py b/bot/exts/christmas/adventofcode.py
index 00607074..b3fe0623 100644
--- a/bot/exts/christmas/adventofcode.py
+++ b/bot/exts/christmas/adventofcode.py
@@ -58,7 +58,7 @@ async def countdown_status(bot: commands.Bot) -> None:
hours, minutes = aligned_seconds // 3600, aligned_seconds // 60 % 60
if aligned_seconds == 0:
- playing = f"right now!"
+ playing = "right now!"
elif aligned_seconds == COUNTDOWN_STEP:
playing = f"in less than {minutes} minutes"
elif hours == 0: