| 1234567891011121314 | # (c) Nelen & Schuurmansfrom typing import Anyfrom typing import Dict__all__ = ["AttrDict"]class AttrDict(Dict[str, Any]):    def __init__(self, *args, **kwargs):        super().__init__(*args, **kwargs)        self.__dict__ = self    def dict(self):        return self
 |