Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/bot/cogs/constants.py
Original file line number Diff line number Diff line change
@@ -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/"),
Expand All @@ -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",
Expand Down
Loading