aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bot/exts/christmas/advent_of_code/_cog.py2
-rw-r--r--bot/exts/christmas/hanukkah_embed.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/bot/exts/christmas/advent_of_code/_cog.py b/bot/exts/christmas/advent_of_code/_cog.py
index ce6a4cb6..ead84544 100644
--- a/bot/exts/christmas/advent_of_code/_cog.py
+++ b/bot/exts/christmas/advent_of_code/_cog.py
@@ -115,7 +115,7 @@ class AdventOfCode(commands.Cog):
delta_str = f"{delta.days} days"
await ctx.send(
- f"The Advent of Code event is not currently running. "
+ "The Advent of Code event is not currently running. "
f"The next event will start in {delta_str}."
)
return
diff --git a/bot/exts/christmas/hanukkah_embed.py b/bot/exts/christmas/hanukkah_embed.py
index af5cfccf..77ef4684 100644
--- a/bot/exts/christmas/hanukkah_embed.py
+++ b/bot/exts/christmas/hanukkah_embed.py
@@ -67,14 +67,14 @@ class HanukkahEmbed(commands.Cog):
hanukkah_start_hour = 18
if hours < hanukkah_start_hour:
embed.description = (
- f"Hanukkah hasnt started yet, "
+ "Hanukkah hasnt started yet, "
f"it will start in about {hanukkah_start_hour - hours} hour/s."
)
await ctx.send(embed=embed)
return
elif hours > hanukkah_start_hour:
embed.description = (
- f"It is the starting day of Hanukkah ! "
+ "It is the starting day of Hanukkah ! "
f"Its been {hours - hanukkah_start_hour} hours hanukkah started !"
)
await ctx.send(embed=embed)