Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
ncdhz committed Nov 3, 2023
1 parent f7d09fa commit 50508bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion no_config/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ def __merge_dict(obj, obj1, cover=False):
elif obj_type == dict and obj1_type == dict:
for key in obj1:
if key in obj:
obj[key] = Config.__merge_dict(obj[key], obj1[key])
obj[key] = Config.__merge_dict(obj[key], obj1[key], cover)
else:
obj[key] = obj1[key]
else:
Expand Down

0 comments on commit 50508bf

Please sign in to comment.