Skip to content

Commit

Permalink
document check_compatibility_ilastik_impl
Browse files Browse the repository at this point in the history
  • Loading branch information
FynnBe committed Nov 12, 2024
1 parent 09a0787 commit c6ac120
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion scripts/check_compatibility_ilastik.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,14 @@ def check_compatibility_ilastik_impl(
rdf_url: str,
sha256: str,
report_path: Path,
):
) -> None:
"""Write `CompatibilityReport` for a resource description.
Args:
rdf_url: URL to the rdf.yaml file
sha256: SHA-256 value of **rdf_url** content
report_path: path to save `CompatibilityReport` as json to
"""
report_path.parent.mkdir(parents=True, exist_ok=True)

rdf = download_rdf(rdf_url, sha256)
Expand Down

0 comments on commit c6ac120

Please sign in to comment.