Skip to content

Commit aa3c4dc

Browse files
committed
ignorning erroneous error
1 parent bd451d6 commit aa3c4dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aredis_om/model/encoders.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def jsonable_encoder(
9090
sqlalchemy_safe=sqlalchemy_safe,
9191
)
9292
if dataclasses.is_dataclass(obj):
93-
return dataclasses.asdict(obj)
93+
return dataclasses.asdict(obj) # type: ignore[call-overload]
9494
if isinstance(obj, Enum):
9595
return obj.value
9696
if isinstance(obj, PurePath):

0 commit comments

Comments
 (0)