mirror of
https://github.com/jonathanhogg/scopething
synced 2025-07-13 10:52:08 +01:00
13 lines
183 B
Python
13 lines
183 B
Python
"""
|
|
utils
|
|
=====
|
|
|
|
Random utility classes/functions.
|
|
"""
|
|
|
|
|
|
class DotDict(dict):
|
|
__getattr__ = dict.__getitem__
|
|
__setattr__ = dict.__setitem__
|
|
__delattr__ = dict.__delitem__
|