mirror of https://github.com/kivy/kivy.git
py3: object doesn't accept kwargs
This commit is contained in:
parent
fe421d2401
commit
823ce7f7e2
|
@ -76,7 +76,7 @@ cdef class EventDispatcher(object):
|
|||
def __init__(self, **kwargs):
|
||||
cdef str func, name, key
|
||||
cdef dict properties
|
||||
super(EventDispatcher, self).__init__(**kwargs)
|
||||
super(EventDispatcher, self).__init__()
|
||||
|
||||
# Auto bind on own handler if exist
|
||||
properties = self.properties()
|
||||
|
|
Loading…
Reference in New Issue