home · contact · privacy
Fix code formatting error.
authorChristian Heller <c.heller@plomlompom.de>
Sat, 26 Jul 2025 15:25:48 +0000 (17:25 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Sat, 26 Jul 2025 15:25:48 +0000 (17:25 +0200)
ircplom/irc_conn.py

index de4b33ab8fe31a5ba22f82c3195e3cbc270f25b6..38c33227b3f7ec62c2a288dd61018e7658c8b544 100644 (file)
@@ -227,11 +227,11 @@ class Client(ABC, ClientQueueMixin):
 
     @abstractmethod
     def log(self, msg: str, chat: str = '') -> None:
-        'Write msg into log of chat, whatever shape that may have.
+        '''Write msg into log of chat, whatever shape that may have.
 
         Messages to chat=CHAT_GLOB are meant to appear in all widgets mapped to
         the client, those to chat="" only in the initial connection window.
-        '
+        '''
 
     def send(self, msg: IrcMessage, chat: str = '') -> None:
         'Send line-separator-delimited message over socket.'