Skip to content

Commit

Permalink
fix: #1203
Browse files Browse the repository at this point in the history
  • Loading branch information
Object905 committed Jun 25, 2024
1 parent c6d44b6 commit f78acf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ninja/signature/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def evaluate_forwardref(type_: ForwardRef, globalns: Any, localns: Any) -> Any:
def evaluate_forwardref(type_: ForwardRef, globalns: Any, localns: Any) -> Any:
# Even though it is the right signature for python 3.9, mypy complains with
# `error: Too many arguments for "_evaluate" of "ForwardRef"` hence the cast...
return cast(Any, type_)._evaluate(globalns, localns, set())
return cast(Any, type_)._evaluate(globalns, localns, recursive_guard=set())


from ninja.types import DictStrAny
Expand Down

0 comments on commit f78acf3

Please sign in to comment.