mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 01:14:15 +02:00
12 lines
342 B
Python
12 lines
342 B
Python
import collections
|
|
|
|
|
|
def deep_update(source: dict, overrides: dict):
|
|
for key, value in overrides.items():
|
|
if isinstance(value, collections.Mapping) and value:
|
|
returned = deep_update(source.get(key, {}), value)
|
|
source[key] = returned
|
|
else:
|
|
source[key] = overrides[key]
|
|
return source
|