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.
2 parents c12dac7 + 7c264e9 commit 35a2885Copy full SHA for 35a2885
ninja/signature/utils.py
@@ -17,7 +17,7 @@ def evaluate_forwardref(type_: ForwardRef, globalns: Any, localns: Any) -> Any:
17
def evaluate_forwardref(type_: ForwardRef, globalns: Any, localns: Any) -> Any:
18
# Even though it is the right signature for python 3.9, mypy complains with
19
# `error: Too many arguments for "_evaluate" of "ForwardRef"` hence the cast...
20
- return cast(Any, type_)._evaluate(globalns, localns, set())
+ return cast(Any, type_)._evaluate(globalns, localns, recursive_guard=set())
21
22
23
from ninja.types import DictStrAny
0 commit comments