attr_dict.py 202 B

12345678910
  1. # (c) Nelen & Schuurmans
  2. class AttrDict(dict):
  3. def __init__(self, *args, **kwargs):
  4. super().__init__(*args, **kwargs)
  5. self.__dict__ = self
  6. def dict(self):
  7. return self