From 06e7707d258f1750f7e09deb7cd49db99f66bea8 Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Fri, 30 May 2025 14:23:12 +0200 Subject: [PATCH] Minor code style fix. --- ircplom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ircplom.py b/ircplom.py index 48bf8e9..9107e16 100755 --- a/ircplom.py +++ b/ircplom.py @@ -85,7 +85,7 @@ class Terminal: print(self._blessed.truncate(msg, self.size.x - offset.x), end='') else: len_padding = self.size.x - len_with_offset - print(msg + (f' ' * len_padding), end='') + print(msg + (' ' * len_padding), end='') def get_keypresses(self) -> Iterator[str]: '''Loop through keypresses from terminal, collect what blessed ignores. -- 2.30.2