home · contact · privacy
Minor code style fix.
authorChristian Heller <c.heller@plomlompom.de>
Fri, 30 May 2025 12:23:12 +0000 (14:23 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Fri, 30 May 2025 12:23:12 +0000 (14:23 +0200)
ircplom.py

index 48bf8e97d01cf95aa7fb66a78c51e80639a4e40a..9107e1684a0cd4e117192c09f1f8585f1f924b1d 100755 (executable)
@@ -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.