diff options
| author | 2021-05-15 11:43:11 -0400 | |
|---|---|---|
| committer | 2021-05-15 11:43:11 -0400 | |
| commit | 95e3bcbee2a68b1379b35c74872df70977cae592 (patch) | |
| tree | 41aab2187c6a9f81ed269dad126f77bcd2e618bb /bot/exts/christmas/hanukkah_embed.py | |
| parent | chore: Refactor more code to follow our style guide (diff) | |
chore: Remove redundant f-strings
Diffstat (limited to 'bot/exts/christmas/hanukkah_embed.py')
| -rw-r--r-- | bot/exts/christmas/hanukkah_embed.py | 4 | 
1 files changed, 2 insertions, 2 deletions
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)  |