Skip to content

Commit

Permalink
add missing default argument for authenticator
Browse files Browse the repository at this point in the history
  • Loading branch information
rlehfeld committed Sep 27, 2024
1 parent dc78e34 commit 7f20b23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RPyCRobotRemote/RPyCRobotRemoteServer.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def __init__(self, # noqa, C901 allow higher complexity here
serve: bool = True,
allow_remote_stop: bool = True,
ipv6: bool = False,
authenticator: Optional[Callable],
authenticator: Optional[Callable] = None,
timeout=None,
logger=None,
server=None,
Expand Down

0 comments on commit 7f20b23

Please sign in to comment.