We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a385deb + c733fc0 commit f7e0eacCopy full SHA for f7e0eac
bioimageio/spec/__main__.py
@@ -128,7 +128,7 @@ def update_format(
128
sys.exit(ret_code)
129
130
131
-update_format.__doc__ == commands.update_format.__doc__
+update_format.__doc__ = commands.update_format.__doc__
132
133
134
@app.command()
bioimageio/spec/commands.py
@@ -24,7 +24,7 @@ def update_format(
24
path: Union[os.PathLike, str],
25
update_to_format: str = "latest",
26
):
27
- """Update a BioImage.IO resource"""
+ """Auto-update fields of a BioImage.IO resource"""
28
raw = load_raw_resource_description(rdf_source, update_to_format=update_to_format)
29
save_raw_resource_description(raw, Path(path))
30
0 commit comments