Spaces:
Runtime error
Runtime error
File size: 181 Bytes
80f808c | 1 2 3 4 5 6 7 8 |
class AttributeDict(dict):
"""dot.notation access to dictionary attributes"""
__getattr__ = dict.get
__setattr__ = dict.__setitem__
__delattr__ = dict.__delitem__
|