remove extra comment

This commit is contained in:
dpedu 2015-06-16 23:37:38 -07:00
parent 595a38c741
commit a372511ac1
1 changed files with 1 additions and 7 deletions

View File

@ -19,11 +19,6 @@ except:
from io import BytesIO as StringIO from io import BytesIO as StringIO
class IRCCore(asynchat.async_chat): class IRCCore(asynchat.async_chat):
""":param coreconfig: The core configuration of the bot. Passed by main.py.
:type coreconfig: dict
:param botconfig: The configuration of this instance of the bot. Passed by main.py.
:type botconfig: dict
"""
def __init__(self): def __init__(self):
asynchat.async_chat.__init__(self) asynchat.async_chat.__init__(self)
@ -49,8 +44,7 @@ class IRCCore(asynchat.async_chat):
self.set_terminator(b"\r\n") self.set_terminator(b"\r\n")
# Set up hooks for modules # Set up hooks for modules
self.initHooks() self.initHooks()s
def loop(self): def loop(self):
asyncore.loop() asyncore.loop()