Skip to content

Commit 416a49a

Browse files
committed
Merge remote-tracking branch 'origin/development' into development
2 parents 701385c + 8130b37 commit 416a49a

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

poetry.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/odin/mapping/__init__.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,9 @@ def apply(
515515
specified is returned.
516516
517517
"""
518-
context = context or {}
518+
if context is None:
519+
context = {}
520+
519521
mapping_result = mapping_result or cls.default_mapping_result
520522
context.setdefault("_loop_idx", [])
521523

0 commit comments

Comments
 (0)