__init__.py 179 B

1234567
  1. from .models import Generator
  2. class AttrDict(dict):
  3. def __init__(self, *args, **kwargs):
  4. super(AttrDict, self).__init__(*args, **kwargs)
  5. self.__dict__ = self