Skip to content

Commit 9c5a784

Browse files
[pre-commit.ci lite] apply automatic fixes
1 parent 9d16a10 commit 9c5a784

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test_config.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -656,7 +656,9 @@ def test_setup_discord_guild_id_successful(self, test_discord_guild_id: str) ->
656656

657657
RuntimeSettings._is_env_variables_setup = True # noqa: SLF001
658658

659-
assert RuntimeSettings()["_DISCORD_MAIN_GUILD_ID"] == int(test_discord_guild_id.strip())
659+
assert RuntimeSettings()["_DISCORD_MAIN_GUILD_ID"] == int(
660+
test_discord_guild_id.strip()
661+
)
660662

661663
def test_missing_discord_guild_id(self) -> None:
662664
"""Test that an error is raised when no `DISCORD_GUILD_ID` is provided."""

0 commit comments

Comments
 (0)