From f9b57a9c478516a3bc71a0d88ba3dbb588fe5c73 Mon Sep 17 00:00:00 2001 From: Ultracoolguy Date: Sun, 15 Nov 2020 11:12:43 -0400 Subject: [PATCH] Remove extra unnecesary newlines --- bot.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/bot.py b/bot.py index 22de9dc..a63a0f9 100755 --- a/bot.py +++ b/bot.py @@ -24,7 +24,6 @@ def read_file(): for player in file: match_players.add(player[:-1]) #Remove newline - class Server(BaseServer): async def line_read(self, line: Line): print(f"{self.name} < {line.format()}") @@ -74,8 +73,6 @@ class Server(BaseServer): await self.send(build("PRIVMSG", [chan, " .matchmake: Ping everyone on match list"])) await self.send(build("PRIVMSG", [chan, " .help: Display this message"])) - - async def line_send(self, line: Line): print(f"{self.name} > {line.format()}")