Is this correct?
Closed this issue · 2 comments
cbh34680 commented
import dictknife
left = {'arr': []}
right = {'arr': [1, 1]}
merge = dictknife.deepmerge(left, right)
print(f'mege = |{merge}|')
mege = |{'arr': [1]}|
podhmo commented
dictknife/dictknife/deepmerge.py
Lines 84 to 87 in a172220
If it's not what you expect, you can use method options to change it.
cbh34680 commented
I understand, Thank you