From 75ff8bc0a6683c2365d756fc5924a20019a42b10 Mon Sep 17 00:00:00 2001 From: Vert Date: Mon, 13 May 2024 12:54:25 -0400 Subject: [PATCH] remove type-annotation fix --- rcon/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rcon/client.py b/rcon/client.py index 73846df..6296f5a 100644 --- a/rcon/client.py +++ b/rcon/client.py @@ -39,7 +39,7 @@ class BaseClient: return self._socket.__exit__(typ, value, traceback) @property - def timeout(self) -> float | None: + def timeout(self) -> float: """Return the socket timeout.""" return self._socket.gettimeout()