Skip to content

Commit

Permalink
Ignore unbound port sec issue in helper
Browse files Browse the repository at this point in the history
Co-authored-by: Sameer Wagh <[email protected]>
  • Loading branch information
BrendanSchell and snwagh committed Sep 18, 2024
1 parent ba216dc commit 27132df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/syft/src/syft/util/test_helpers/email_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ def user_exists(root_client, email: str) -> bool:
class SMTPTestServer:
def __init__(self, email_server):
self.port = 9025
self.hostname = "0.0.0.0"
self.hostname = "0.0.0.0" # nosec: B104
self._stop_event = asyncio.Event()

# Simple email handler class
Expand Down

0 comments on commit 27132df

Please sign in to comment.