Skip to content

Commit

Permalink
consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
leoschwarz committed Oct 2, 2024
1 parent 83f172a commit 112038a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/depiction_targeted_preproc/app_interface/collect_chunk.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ def collect_chunk(workunit_ref: int | Path, chunk_dir: Path) -> None:
"store_entry_path": f"WU{workunit_id}_result_{chunk_dir.name}.zip",
}
]
result = {"outputs": outputs}

with (chunk_dir / "outputs.yml").open("w") as f:
yaml.safe_dump(result, f)
yaml.safe_dump({"outputs": outputs}, f)


if __name__ == "__main__":
Expand Down

0 comments on commit 112038a

Please sign in to comment.