Skip to content

Commit

Permalink
Update strawberry/utils/inspect.py
Browse files Browse the repository at this point in the history
Co-authored-by: Thiago Bellini Ribeiro <hackedbellini@gmail.com>
  • Loading branch information
alexey-pelykh and bellini666 authored Feb 8, 2025
1 parent 025e667 commit 0edec31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion strawberry/utils/inspect.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ class IntBarFoo(IntBar, Foo[str]): ...
"""
from strawberry.types.base import has_object_definition

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

types: list[type] = [cls]
while types:
Expand Down

0 comments on commit 0edec31

Please sign in to comment.