in runtool/runtool/datatypes.py [0:0]
def __init__(self, init_data: dict = {}):
for key, value in init_data.items():
if hasattr(value, "keys"):
if isinstance(value, DotDict):
self[key] = value
else:
self[key] = DotDict(value)
else:
self[key] = value