diff options
Diffstat (limited to '')
| -rw-r--r-- | bot/exts/evergreen/xkcd.py | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/bot/exts/evergreen/xkcd.py b/bot/exts/evergreen/xkcd.py index c98830bc..7c4fc30e 100644 --- a/bot/exts/evergreen/xkcd.py +++ b/bot/exts/evergreen/xkcd.py @@ -1,7 +1,7 @@  import logging  import re  from random import randint -from typing import Dict, Optional, Union +from typing import Optional, Union  from discord import Embed  from discord.ext import tasks @@ -21,7 +21,7 @@ class XKCD(Cog):      def __init__(self, bot: Bot) -> None:          self.bot = bot -        self.latest_comic_info: Dict[str, Union[str, int]] = {} +        self.latest_comic_info: dict[str, Union[str, int]] = {}          self.get_latest_comic_info.start()      def cog_unload(self) -> None: | 
