mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 19:19:32 +01:00
Do not pass arguments to object.__init__ in IrcDriver.__init__
This commit is contained in:
parent
c23c84a725
commit
5fabe8f747
@ -1,6 +1,6 @@
|
||||
###
|
||||
# Copyright (c) 2002-2004, Jeremiah Fincher
|
||||
# Copyright (c) 2008, James Vega
|
||||
# Copyright (c) 2008-2009, James Vega
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
@ -49,7 +49,7 @@ class IrcDriver(object):
|
||||
"""Base class for drivers."""
|
||||
def __init__(self, *args, **kwargs):
|
||||
add(self.name(), self)
|
||||
super(IrcDriver, self).__init__(*args, **kwargs)
|
||||
super(IrcDriver, self).__init__()
|
||||
|
||||
def run(self):
|
||||
raise NotImplementedError
|
||||
|
Loading…
Reference in New Issue
Block a user