ollieollie's picture
init hf space commit
e698a98
raw
history blame contribute delete
148 Bytes
class AttrDict(dict):
def __init__(self, *args, **kwargs):
super(AttrDict, self).__init__(*args, **kwargs)
self.__dict__ = self