Skip to content

Commit

Permalink
forgot to actually run tox after pulling in the linter suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
Emma May committed Nov 19, 2024
1 parent 2186512 commit 8580a45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def __init__(
self, host: Optional[str] = None, port: Optional[int] = None, scheme=None, verify: bool = True, cert=None
) -> None:
self.host = host
self.port = port if port else None
self.port = int(port) if port else None
self.scheme = scheme
self.verify = verify
self.cert = cert
Expand Down

0 comments on commit 8580a45

Please sign in to comment.