We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d6aec2 commit a7cfb9dCopy full SHA for a7cfb9d
tux/utils/config.py
@@ -153,7 +153,7 @@ def BOT_TOKEN(self) -> str: # noqa: N802
153
ACCESS_ROLE_IDS: Final[list[int]] = config["SNIPPETS"]["ACCESS_ROLE_IDS"]
154
155
# IRC Bridges
156
- BRIDGE_WEBHOOK_IDS: Final[list[int]] = config["IRC"]["BRIDGE_WEBHOOK_IDS"]
+ BRIDGE_WEBHOOK_IDS: Final[list[int]] = [int(x) for x in config["IRC"]["BRIDGE_WEBHOOK_IDS"]]
157
158
159
CONFIG = Config()
0 commit comments