From c7fbe91ab603792b9236d5d1bc1744859ac0d4e6 Mon Sep 17 00:00:00 2001 From: Aditya Bansal Date: Sun, 7 May 2017 20:13:37 +0530 Subject: [PATCH] pep8: Add compliance with rule E261 to irc-mirror.py. --- bots/irc-mirror.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bots/irc-mirror.py b/bots/irc-mirror.py index 16c2621..f0a1c67 100755 --- a/bots/irc-mirror.py +++ b/bots/irc-mirror.py @@ -27,7 +27,7 @@ class IRCBot(irc.bot.SingleServerIRCBot): def __init__(self, channel, nickname, server, port=6667): # type: (irc.bot.Channel, str, str, int) -> None irc.bot.SingleServerIRCBot.__init__(self, [(server, port)], nickname, nickname) - self.channel = channel # type: irc.bot.Channel + self.channel = channel # type: irc.bot.Channel def on_nicknameinuse(self, c, e): # type: (ServerConnection, Event) -> None