We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f027616 commit 8a691edCopy full SHA for 8a691ed
tailor_distro/create_recipes.py
@@ -16,7 +16,7 @@
16
def nested_update(d, u):
17
d = deepcopy(d)
18
for k, v in u.items():
19
- if isinstance(v, collections.Mapping):
+ if isinstance(v, collections.abc.Mapping):
20
d[k] = nested_update(d.get(k, {}), v)
21
else:
22
d[k] = v
0 commit comments