1
0
mirror of https://github.com/jonathanhogg/scopething synced 2025-07-13 10:52:08 +01:00
Files
scopething/utils.py
2020-07-23 15:37:40 +01:00

13 lines
183 B
Python

"""
utils
=====
Random utility classes/functions.
"""
class DotDict(dict):
__getattr__ = dict.__getitem__
__setattr__ = dict.__setitem__
__delattr__ = dict.__delitem__