removed no-op explicit constructor from over.core.types.ndict

This commit is contained in:
Overwatch 2014-12-06 22:38:01 +01:00
parent b8ea263c69
commit 2f778e7c79
2 changed files with 0 additions and 6 deletions

View file

@ -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]

View file

@ -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]