diff --git a/src/bot/cogs/constants.py b/src/bot/cogs/constants.py index ac9795d..667997e 100644 --- a/src/bot/cogs/constants.py +++ b/src/bot/cogs/constants.py @@ -1,6 +1,6 @@ from discord.app_commands import Choice -WEBPAGE_CHOICES: tuple[Choice[str], ...] = ( +WEBPAGE_CHOICES: list[Choice[str], ...] = [ Choice(name="Home", value=""), Choice(name="Getting started", value="getting-started/"), Choice(name="Resources", value="resources/"), @@ -9,7 +9,7 @@ Choice(name="Code Adventure", value="code-adventure/"), Choice(name="Learning path", value="resources/learning-path/"), Choice(name="Codeblocks", value="rules/channels/#__tabbed_2_1"), -) +] LATEX_COLORS = { "emerald": "Emerald",