Skip to content

Commit

Permalink
Use Optional[...]
Browse files Browse the repository at this point in the history
Co-authored-by: Matthew Kosarek <matthew@matthewkosarek.xyz>
  • Loading branch information
hbatagelo and mattkae authored May 24, 2024
1 parent 3b4cba8 commit ce8bc8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mir-ci/mir_ci/tests/robot/platforms/vnc/Vnc.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def __init__(
self, host="localhost", port=5900, username: Optional[str] = None, password: Optional[str] = None
) -> None:
self.ROBOT_LIBRARY_LISTENER = self
self._client: asyncvnc.Client = None
self._client: Optional[asyncvnc.Client] = None
self._host = host
self._port = port
self._username = username
Expand Down

0 comments on commit ce8bc8a

Please sign in to comment.