Skip to content

Commit 0edec31

Browse files
Update strawberry/utils/inspect.py
Co-authored-by: Thiago Bellini Ribeiro <[email protected]>
1 parent 025e667 commit 0edec31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

strawberry/utils/inspect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ class IntBarFoo(IntBar, Foo[str]): ...
8484
"""
8585
from strawberry.types.base import has_object_definition
8686

87-
param_args = OrderedDict[TypeVar, Union[None, TypeVar, type]]()
87+
param_args: dict[TypeVar, Union[None, TypeVar, type]] = {}
8888

8989
types: list[type] = [cls]
9090
while types:

0 commit comments

Comments
 (0)