Skip to content

Commit 1a6de2b

Browse files
committed
Work around typeshed bug
See python/typeshed#8542.
1 parent 610e243 commit 1a6de2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pythonosc/osc_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def __init__(self, server_address: Tuple[str, int], dispatcher: Dispatcher, bind
5858
dispatcher: Dispatcher this server will use
5959
(optional) bind_and_activate: default=True defines if the server has to start on call of constructor
6060
"""
61-
super().__init__(server_address, _UDPHandler, bind_and_activate)
61+
super().__init__(server_address, _UDPHandler, bind_and_activate) # type: ignore[call-arg] # https://github.com/python/typeshed/pull/8542
6262
self._dispatcher = dispatcher
6363

6464
def verify_request(self, request: _RequestType, client_address: _AddressType) -> bool:

0 commit comments

Comments
 (0)