summaryrefslogtreecommitdiff
path: root/poezio/windows/input_placeholders.py
diff options
context:
space:
mode:
Diffstat (limited to 'poezio/windows/input_placeholders.py')
-rw-r--r--poezio/windows/input_placeholders.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/poezio/windows/input_placeholders.py b/poezio/windows/input_placeholders.py
index c5656f72..3ec57583 100644
--- a/poezio/windows/input_placeholders.py
+++ b/poezio/windows/input_placeholders.py
@@ -19,9 +19,11 @@ class HelpText(Win):
command mode.
"""
+ __slots__ = ('txt')
+
def __init__(self, text: str = '') -> None:
Win.__init__(self)
- self.txt = text # type: str
+ self.txt: str = text
def refresh(self, txt: Optional[str] = None) -> None:
log.debug('Refresh: %s', self.__class__.__name__)