aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bot/seasons/season.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/bot/seasons/season.py b/bot/seasons/season.py
index c69f99cc..c5009d6b 100644
--- a/bot/seasons/season.py
+++ b/bot/seasons/season.py
@@ -29,13 +29,6 @@ def get_seasons() -> List[str]:
return seasons
-def get_season_class(season_name: str) -> Type["SeasonBase"]:
- """Gets the season class of the season module."""
- season_lib = importlib.import_module(f"bot.seasons.{season_name}")
- class_name = season_name.replace("_", " ").title().replace(" ", "")
- return getattr(season_lib, class_name)
-
-
class SeasonBase:
"""Base class for Seasonal classes."""