Skip to content

Commit

Permalink
cleaning
Browse files Browse the repository at this point in the history
  • Loading branch information
deadc0de6 committed Dec 22, 2023
1 parent 5f16e6a commit 2c462c3
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions dotdrop/cfg_yaml.py
Original file line number Diff line number Diff line change
Expand Up @@ -1709,11 +1709,13 @@ def _merge_dict(cls, high, low, deep=False):
if k not in final:
final[k] = []
final[k] += val
elif isinstance(val, str):
final[k] = val
else:
# don't know how to handle
# err = 'unable to merge'
# raise YamlException(err)
final[k] = val
err = 'unable to merge'
raise YamlException(err)

return final

@classmethod
Expand Down

0 comments on commit 2c462c3

Please sign in to comment.