-
-
Notifications
You must be signed in to change notification settings - Fork 43
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
Python version
3.11.10
Package version
0.30.0
Current behavior (bug description)
d = benedict({
"a": {
"b": 23
}
})
print(d)
# {'a': {'b': 23}}
d.a = d.a
print(d)
# {'a': {}}Expected behavior
Assigning d.a = d.a should not change the dictionary. I would expect the following:
d = benedict({
"a": {
"b": 23
}
})
print(d)
# {'a': {'b': 23}}
d.a = d.a
print(d)
# {'a': {'b': 23}} Cheers
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working
Projects
Status
Done