Skip to content

Commit

Permalink
Fix for python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
aabmass committed Jan 23, 2025
1 parent 23b063d commit 1760c68
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,6 @@ def _parts_to_any_value(
return None

return [
cast(dict[str, AnyValue], type(part).to_dict(part)) # type: ignore[reportUnknownMemberType]
cast("dict[str, AnyValue]", type(part).to_dict(part)) # type: ignore[reportUnknownMemberType]
for part in parts
]

0 comments on commit 1760c68

Please sign in to comment.