Biorrith's picture
Initial space
450fc66
raw
history blame
148 Bytes
class AttrDict(dict):
def __init__(self, *args, **kwargs):
super(AttrDict, self).__init__(*args, **kwargs)
self.__dict__ = self