Remove extra unnecesary newlines

This commit is contained in:
Ultracoolguy 2020-11-15 11:12:43 -04:00
parent 196c455817
commit f9b57a9c47
1 changed files with 0 additions and 3 deletions

3
bot.py
View File

@ -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()}")