Skip to content

Commit

Permalink
Fix invalid noqa statement
Browse files Browse the repository at this point in the history
  • Loading branch information
magnuswatn committed Aug 7, 2023
1 parent c0341e1 commit 01032fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testserver/testserver/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def is_valid_market(env: str) -> TypeGuard[Literal["test", "prod"]]:

def main() -> None:
if os.getenv("RUNNING_IN_DOCKER"):
listen_host = "0.0.0.0" # ruff: noqa: S104
listen_host = "0.0.0.0" # noqa: S104
ldap_port = 389
http_port = 80
else:
Expand Down

0 comments on commit 01032fa

Please sign in to comment.