Skip to content

Commit 11e1b9d

Browse files
committed
Restore typeshed bug fix
1 parent b65cf64 commit 11e1b9d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pythonosc/osc_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def _is_valid_request(request: _RequestType) -> bool:
4949
class OSCUDPServer(socketserver.UDPServer):
5050
"""Superclass for different flavors of OSC UDP servers"""
5151

52-
def __init__(self, server_address: Tuple[str, int], dispatcher: Dispatcher, bind_and_activate: bool = True) -> None:
52+
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
5353
"""Initialize
5454
5555
Args:

0 commit comments

Comments
 (0)