jrnl/jrnl/datatypes/NestedDict.py
2023-06-21 06:24:37 -07:00

7 lines
161 B
Python

"""https://stackoverflow.com/a/74873621/8740440"""
class NestedDict(dict):
def __missing__(self, x):
self[x] = NestedDict()
return self[x]