From 7bbe77fe4a6c176ffcbca3ec1928441f5f6062bd Mon Sep 17 00:00:00 2001 From: James Lu Date: Sat, 21 Jan 2017 11:08:37 -0800 Subject: [PATCH] Irc: remove unused "bot_clients" attribute Thanks to @IotaSpencer for pointing this out! --- classes.py | 1 - 1 file changed, 1 deletion(-) diff --git a/classes.py b/classes.py index dac1c80..df8f4e5 100644 --- a/classes.py +++ b/classes.py @@ -47,7 +47,6 @@ class Irc(): self.sid = None self.serverdata = conf['servers'][netname] self.botdata = conf['bot'] - self.bot_clients = {} self.protoname = proto.__name__.split('.')[-1] # Remove leading pylinkirc.protocols. self.proto = proto.Class(self) self.pingfreq = self.serverdata.get('pingfreq') or 90