diff options
author | 2020-09-24 18:54:10 +0300 | |
---|---|---|
committer | 2020-09-24 18:54:10 +0300 | |
commit | 69d2292ec4b3fb2dc83f291ef1ed7bc86eabfd09 (patch) | |
tree | b0c3c0991eef3fc278a0977baf129a7205ff469c /bot/exts/christmas/adventofcode.py | |
parent | Merge remote-tracking branch 'origin/tic-tac-toe' into tic-tac-toe (diff) | |
parent | Merge pull request #456 from Anubhav1603/update_dpy (diff) |
Merge branch 'master' into tic-tac-toe
Diffstat (limited to 'bot/exts/christmas/adventofcode.py')
-rw-r--r-- | bot/exts/christmas/adventofcode.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/christmas/adventofcode.py b/bot/exts/christmas/adventofcode.py index cc3923c8..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: @@ -429,7 +429,7 @@ class AdventOfCode(commands.Cog): def _build_about_embed(self) -> discord.Embed: """Build and return the informational "About AoC" embed from the resources file.""" - with self.about_aoc_filepath.open("r") as f: + with self.about_aoc_filepath.open("r", encoding="utf8") as f: embed_fields = json.load(f) about_embed = discord.Embed(title=self._base_url, colour=Colours.soft_green, url=self._base_url) |