4 lines
147 B
Python
4 lines
147 B
Python
|
|
class AttrDict(dict):
|
||
|
|
def __init__(self, *args, **kwargs):
|
||
|
|
super(AttrDict, self).__init__(*args, **kwargs)
|
||
|
|
self.__dict__ = self
|