Spaces:
Runtime error
Runtime error
File size: 180 Bytes
fd43906 |
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
|