Spaces:
Sleeping
Sleeping
File size: 148 Bytes
506a2b4 |
1 2 3 4 5 |
class AttrDict(dict):
def __init__(self, *args, **kwargs):
super(AttrDict, self).__init__(*args, **kwargs)
self.__dict__ = self
|