Skip to content

Commit f4427e0

Browse files
committed
Remove redundant ignore
1 parent 99844e7 commit f4427e0

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
@@ -57,7 +57,7 @@ def __init__(self, server_address: Tuple[str, int], dispatcher: Dispatcher, bind
5757
dispatcher: Dispatcher this server will use
5858
(optional) bind_and_activate: default=True defines if the server has to start on call of constructor
5959
"""
60-
super().__init__(server_address, _UDPHandler, bind_and_activate) # type: ignore[call-arg] # https://github.com/python/typeshed/pull/8542
60+
super().__init__(server_address, _UDPHandler, bind_and_activate)
6161
self._dispatcher = dispatcher
6262

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

0 commit comments

Comments
 (0)