Skip to content

Commit

Permalink
fix type ignore type check failure
Browse files Browse the repository at this point in the history
  • Loading branch information
matusdrobuliak66 committed Oct 30, 2024
1 parent 0284dd1 commit 783f0c2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def jsonable_encoder(
sqlalchemy_safe=sqlalchemy_safe,
)
if dataclasses.is_dataclass(obj):
obj_dict = dataclasses.asdict(obj) # type: ignore[call-overload]
obj_dict = dataclasses.asdict(obj) # type: ignore
return jsonable_encoder(
obj_dict,
include=include,
Expand Down

0 comments on commit 783f0c2

Please sign in to comment.