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.
1 parent 0edec31 commit 6b63ed0Copy full SHA for 6b63ed0
strawberry/utils/inspect.py
@@ -1,6 +1,5 @@
1
import asyncio
2
import inspect
3
-from collections import OrderedDict
4
from functools import lru_cache
5
from itertools import zip_longest
6
from typing import (
@@ -113,7 +112,7 @@ class IntBarFoo(IntBar, Foo[str]): ...
113
112
for type_param, arg in list(param_args.items()):
114
if arg is None or not isinstance(arg, TypeVar):
115
continue
116
- resolved_arg = param_args.get(arg, None) if arg is not type_param else None
+ resolved_arg = param_args.get(arg) if arg is not type_param else None
117
param_args[type_param] = resolved_arg
118
119
if resolved_arg:
0 commit comments