We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f295c5 commit ae787d1Copy full SHA for ae787d1
1 file changed
pythonosc/udp_client.py
@@ -58,7 +58,7 @@ def __init__(
58
def __enter__(self) -> "UDPClient":
59
return self
60
61
- def __exit__(self, exc_type, exc_val, exc_tb) -> None:
+ def __exit__(self, exc_type: type | None, exc_val: Exception | None, exc_tb: object | None) -> None:
62
self.close()
63
64
def close(self) -> None:
0 commit comments