ESG_Analysis / model /utils.py
Mawube's picture
Create utils.py
80f808c
raw
history blame contribute delete
181 Bytes
class AttributeDict(dict):
"""dot.notation access to dictionary attributes"""
__getattr__ = dict.get
__setattr__ = dict.__setitem__
__delattr__ = dict.__delitem__