mirror of
https://github.com/Mikaela/Limnoria.git
synced 2025-01-25 19:44:13 +01:00
IrcCallback's super() doesn't take any args.
This commit is contained in:
parent
8786b4c993
commit
9f3bc9d355
@ -79,7 +79,9 @@ class IrcCallback(IrcCommandDispatcher):
|
|||||||
}
|
}
|
||||||
|
|
||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, *args, **kwargs):
|
||||||
super(IrcCallback, self).__init__(*args, **kwargs)
|
#object doesn't take any args, so the buck stops here.
|
||||||
|
#super(IrcCallback, self).__init__(*args, **kwargs)
|
||||||
|
pass
|
||||||
|
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
return '<%s %s %s>' % \
|
return '<%s %s %s>' % \
|
||||||
|
Loading…
Reference in New Issue
Block a user