Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vachillo committed Oct 25, 2024
1 parent 9ca30aa commit 5a6574d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def load(self) -> tuple[list[Run], dict[str, Any]]:

runs = [
Run(
**({"id": message["metadata"]} if "metadata" in message else {}),
**({"id": message["metadata"].pop("run_id", None)} if "run_id" in message.get("metadata") else {}),
meta=message["metadata"],
input=BaseArtifact.from_json(message["input"]),
output=BaseArtifact.from_json(message["output"]),
Expand Down

0 comments on commit 5a6574d

Please sign in to comment.