From 365758cc81c8893d7520ca9250535947eb083fa7 Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Thu, 7 Jan 2021 18:23:01 +0100 Subject: [PATCH] Added __slots__. --- rcon/readline.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rcon/readline.py b/rcon/readline.py index 9de0f6b..a7da816 100644 --- a/rcon/readline.py +++ b/rcon/readline.py @@ -19,6 +19,8 @@ HIST_FILE = Path.home().joinpath('.rconshell_history') class CommandHistory: """Context manager for the command line history.""" + __slots__ = ('logger',) + def __init__(self, logger: Logger): """Sets the logger to use.""" self.logger = logger