removed no-op explicit constructor from over.core.types.ndict
This commit is contained in:
parent
b8ea263c69
commit
2f778e7c79
2 changed files with 0 additions and 6 deletions
|
@ -18,9 +18,6 @@ cdef class ndict(dict):
|
|||
{'alpha': 1, 'beta': 42}
|
||||
'''
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
dict.__init__(self, *args, **kwargs)
|
||||
|
||||
def __getattr__(self, str name):
|
||||
if name in self:
|
||||
return self[name]
|
||||
|
|
|
@ -18,9 +18,6 @@ class ndict(dict):
|
|||
{'alpha': 1, 'beta': 42}
|
||||
'''
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
dict.__init__(self, *args, **kwargs)
|
||||
|
||||
def __getattr__(self, name):
|
||||
if name in self:
|
||||
return self[name]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue