Closed jaswanth098 closed 2 years ago
>>> from deeputil import AttrDict >>> a = AttrDict({"b": {}}) >>> a.b.c = 1 >>> a AttrDict({'b': {}}) >>> a.c = 1 >>> a AttrDict({'b': {}, 'c': 1}) >>>
On the top level of dictionary values are getting manipulated but the internal dictionary is not getting updated with any values provided
Will get back to this later
not prio and also needs some thinking
@prashanthellina Can we close this issue?
I'll keep this open for now. snoozing.
Not a priority
On the top level of dictionary values are getting manipulated but the internal dictionary is not getting updated with any values provided