From 2847c1aea44f8fb5bd4a69e7904f19a3831df9b2 Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Sat, 20 Aug 2022 15:52:44 +0200 Subject: [PATCH] Remove obsolete max_packet_size --- rcon/client.py | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/rcon/client.py b/rcon/client.py index 02df231..1c39442 100644 --- a/rcon/client.py +++ b/rcon/client.py @@ -9,8 +9,6 @@ __all__ = ['BaseClient'] class BaseClient: """A common RCON client.""" - _max_packet_size: int | None = None - def __init__( self, host: str, port: int, *, timeout: float | None = None, @@ -23,18 +21,10 @@ class BaseClient: self.timeout = timeout self.passwd = passwd - def __init_subclass__( - cls, - *, - socket_type: SocketKind | None = None, - max_packet_size: int | None = None - ): + def __init_subclass__(cls, *, socket_type: SocketKind | None = None): if socket_type is not None: cls._socket_type = socket_type - if max_packet_size is not None: - cls._max_packet_size = max_packet_size - def __enter__(self): """Attempt an auto-login if a password is set.""" self._socket.__enter__()