Spaces:
Running
on
Zero
Running
on
Zero
File size: 180 Bytes
e73da9c |
1 2 3 4 5 6 7 8 |
from .models import Generator
class AttrDict(dict):
def __init__(self, *args, **kwargs):
super(AttrDict, self).__init__(*args, **kwargs)
self.__dict__ = self
|