aboutsummaryrefslogtreecommitdiffstats
path: root/bot/seasons/christmas/adventofcode.py
diff options
context:
space:
mode:
authorGravatar Joseph Banks <[email protected]>2018-12-26 11:21:06 +0000
committerGravatar Joseph Banks <[email protected]>2018-12-26 11:21:06 +0000
commit2f693d82ca6ad26905db85616dcc9a70a4373bdc (patch)
tree0b2bfe6fd391f317a6b574fabb9f01aad6d7b205 /bot/seasons/christmas/adventofcode.py
parentFix the grammar on the message (diff)
Address flake8 complaints
Diffstat (limited to 'bot/seasons/christmas/adventofcode.py')
-rw-r--r--bot/seasons/christmas/adventofcode.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bot/seasons/christmas/adventofcode.py b/bot/seasons/christmas/adventofcode.py
index d45477a0..486d3b18 100644
--- a/bot/seasons/christmas/adventofcode.py
+++ b/bot/seasons/christmas/adventofcode.py
@@ -184,7 +184,8 @@ class AdventOfCode:
datetime_now = datetime.datetime.now(EST)
december_first = datetime.datetime(datetime_now.year + 1, 12, 1, tzinfo=EST)
delta = december_first - datetime_now
- await ctx.send(f"The Advent of Code event is not currently running. The next event will start in {delta.days} days.")
+ await ctx.send(f"The Advent of Code event is not currently running. "
+ f"The next event will start in {delta.days} days.")
return
tomorrow, time_left = time_left_to_aoc_midnight()