Skip to content

Commit

Permalink
serialize causy extensions properly
Browse files Browse the repository at this point in the history
  • Loading branch information
LilithWittmann committed Jul 6, 2024
1 parent 65d2125 commit 827e322
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions causy/serialization.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ def load_algorithm_from_specification(algorithm_dict: Dict[str, Any]):
algorithm_dict["pipeline_steps"] = load_pipeline_steps_by_definition(
algorithm_dict["pipeline_steps"]
)
algorithm_dict["extensions"] = load_pipeline_steps_by_definition(
algorithm_dict["extensions"]
)
if "variables" not in algorithm_dict or algorithm_dict["variables"] is None:
algorithm_dict["variables"] = []

Expand Down

0 comments on commit 827e322

Please sign in to comment.