Skip to content

Commit a7cfb9d

Browse files
Update tux/utils/config.py
Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
1 parent 2d6aec2 commit a7cfb9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tux/utils/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ def BOT_TOKEN(self) -> str: # noqa: N802
153153
ACCESS_ROLE_IDS: Final[list[int]] = config["SNIPPETS"]["ACCESS_ROLE_IDS"]
154154

155155
# IRC Bridges
156-
BRIDGE_WEBHOOK_IDS: Final[list[int]] = config["IRC"]["BRIDGE_WEBHOOK_IDS"]
156+
BRIDGE_WEBHOOK_IDS: Final[list[int]] = [int(x) for x in config["IRC"]["BRIDGE_WEBHOOK_IDS"]]
157157

158158

159159
CONFIG = Config()

0 commit comments

Comments
 (0)