Skip to content
This repository has been archived by the owner on Jan 2, 2024. It is now read-only.

Commit

Permalink
added deserializable for stacktrace in job model
Browse files Browse the repository at this point in the history
  • Loading branch information
Toan Quach authored and Toan Quach committed Nov 14, 2023
1 parent ae80b16 commit c583914
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/taipy/core/job/_job_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def from_dict(data: Dict[str, Any]):
submit_entity_id=data["submit_entity_id"],
creation_date=data["creation_date"],
subscribers=_BaseModel._deserialize_attribute(data["subscribers"]),
stacktrace=data["stacktrace"],
stacktrace=_BaseModel._deserialize_attribute(data["stacktrace"]),
version=data["version"],
)

Expand Down

0 comments on commit c583914

Please sign in to comment.