Skip to content

Commit

Permalink
Fix calling typing._evaluate on Python 3.12.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Fatal1ty committed Jun 13, 2024
1 parent a8ca9f2 commit 01b1d79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mashumaro/core/meta/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -773,7 +773,7 @@ def evaluate_forward_ref(
) -> Optional[Type]:
if PY_39_MIN:
return typ._evaluate(
globalns, localns, frozenset()
globalns, localns, recursive_guard=frozenset()
) # type: ignore[call-arg]
else:
return typ._evaluate(globalns, localns) # type: ignore[call-arg]
Expand Down

0 comments on commit 01b1d79

Please sign in to comment.