Skip to content

Commit

Permalink
Fix mypy errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Fatal1ty committed Nov 14, 2023
1 parent 32a4911 commit da4f630
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mashumaro/core/meta/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,7 @@ def str_to_forward_ref(
annotation: str, module: Optional[types.ModuleType] = None
) -> ForwardRef:
if PY_39_MIN:
return ForwardRef(annotation, module=module)
return ForwardRef(annotation, module=module) # type: ignore
else:
return ForwardRef(annotation)

Expand Down

0 comments on commit da4f630

Please sign in to comment.