Skip to content

Commit 0d75384

Browse files
committed
push
1 parent 63c3c3f commit 0d75384

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

langfuse/api/core/jsonable_encoder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def jsonable_encoder(
6060
obj_dict = obj_dict["__root__"]
6161
return jsonable_encoder(obj_dict, custom_encoder=encoder)
6262
if dataclasses.is_dataclass(obj):
63-
obj_dict = dataclasses.asdict(obj) # type: ignore
63+
obj_dict = dataclasses.asdict(obj)
6464
return jsonable_encoder(obj_dict, custom_encoder=custom_encoder)
6565
if isinstance(obj, bytes):
6666
return base64.b64encode(obj).decode("utf-8")

0 commit comments

Comments
 (0)