Skip to content

Commit 416a49a

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

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

poetry.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/odin/mapping/__init__.py

Lines changed: 3 additions & 1 deletion
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)