mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-10 08:38:32 +02:00
7 lines
161 B
Python
7 lines
161 B
Python
"""https://stackoverflow.com/a/74873621/8740440"""
|
|
|
|
|
|
class NestedDict(dict):
|
|
def __missing__(self, x):
|
|
self[x] = NestedDict()
|
|
return self[x]
|