We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b65cf64 commit 11e1b9dCopy full SHA for 11e1b9d
1 file changed
pythonosc/osc_server.py
@@ -49,7 +49,7 @@ def _is_valid_request(request: _RequestType) -> bool:
49
class OSCUDPServer(socketserver.UDPServer):
50
"""Superclass for different flavors of OSC UDP servers"""
51
52
- def __init__(self, server_address: Tuple[str, int], dispatcher: Dispatcher, bind_and_activate: bool = True) -> None:
+ def __init__(self, server_address: Tuple[str, int], dispatcher: Dispatcher, bind_and_activate: bool = True) -> None: # type: ignore[call-arg] # https://github.com/python/typeshed/pull/8542
53
"""Initialize
54
55
Args:
0 commit comments