Skip to content

Commit ae787d1

Browse files
committed
added missing type annotations
1 parent 1f295c5 commit ae787d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pythonosc/udp_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def __init__(
5858
def __enter__(self) -> "UDPClient":
5959
return self
6060

61-
def __exit__(self, exc_type, exc_val, exc_tb) -> None:
61+
def __exit__(self, exc_type: type | None, exc_val: Exception | None, exc_tb: object | None) -> None:
6262
self.close()
6363

6464
def close(self) -> None:

0 commit comments

Comments
 (0)