attr_dict.py 226 B

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