diff --git a/core/cython_types.pyx b/core/cython_types.pyx index 9d786d8..0568f83 100644 --- a/core/cython_types.pyx +++ b/core/cython_types.pyx @@ -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] diff --git a/core/python_types.py b/core/python_types.py index c4afa53..9815d8e 100644 --- a/core/python_types.py +++ b/core/python_types.py @@ -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]