From 617f9dd1907993eb70dbe44c29fd91ca7c96d920 Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Mon, 14 Feb 2022 12:52:45 +0100 Subject: [PATCH] Remove useless optimization --- rcon/client.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/rcon/client.py b/rcon/client.py index 6355fed..0fd22f6 100644 --- a/rcon/client.py +++ b/rcon/client.py @@ -10,8 +10,6 @@ __all__ = ['BaseClient'] class BaseClient: """A common RCON client.""" - __slots__ = ('_socket', 'host', 'port', 'passwd') - def __init__( self, host: str, port: int, *, timeout: Optional[float] = None,