Skip to content

Commit 35a2885

Browse files
authored
Merge branch 'vitalik:master' into fix_nullable_with_default
2 parents c12dac7 + 7c264e9 commit 35a2885

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ninja/signature/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def evaluate_forwardref(type_: ForwardRef, globalns: Any, localns: Any) -> Any:
1717
def evaluate_forwardref(type_: ForwardRef, globalns: Any, localns: Any) -> Any:
1818
# Even though it is the right signature for python 3.9, mypy complains with
1919
# `error: Too many arguments for "_evaluate" of "ForwardRef"` hence the cast...
20-
return cast(Any, type_)._evaluate(globalns, localns, set())
20+
return cast(Any, type_)._evaluate(globalns, localns, recursive_guard=set())
2121

2222

2323
from ninja.types import DictStrAny

0 commit comments

Comments
 (0)