diff options
Diffstat (limited to 'bot/seasons/__init__.py')
| -rw-r--r-- | bot/seasons/__init__.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/bot/seasons/__init__.py b/bot/seasons/__init__.py index 7faf9164..ffbf8add 100644 --- a/bot/seasons/__init__.py +++ b/bot/seasons/__init__.py @@ -2,13 +2,8 @@ import logging from discord.ext import commands -from bot.seasons.season import SeasonBase, SeasonManager, get_season +from bot.seasons.season import SeasonBase, get_season __all__ = ("SeasonBase", "get_season") log = logging.getLogger(__name__) - - -def setup(bot: commands.Bot) -> None: - bot.add_cog(SeasonManager(bot)) - log.info("SeasonManager cog loaded") |