File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -591,7 +591,7 @@ def input_dataset(stat: Stat):
591591
592592
593593class IncreaseWeightFormatsCmd (CmdBase , WithSource ):
594- path : CliPositionalArg [Path ]
594+ output : CliPositionalArg [Path ]
595595 """The path to write the updated model description to."""
596596
597597 def run (self ):
@@ -601,7 +601,7 @@ def run(self):
601601 f"model format { model_descr .format_version } not supported."
602602 + " Please update the model first."
603603 )
604- _ = increase_available_weight_formats (model_descr , output_path = self .path )
604+ _ = increase_available_weight_formats (model_descr , output_path = self .output )
605605
606606
607607JSON_FILE = "bioimageio-cli.json"
@@ -639,7 +639,7 @@ class Bioimageio(
639639 """Update the metadata format"""
640640
641641 increase_weight_formats : CliSubCommand [IncreaseWeightFormatsCmd ] = Field (
642- alias = "incease -weight-formats"
642+ alias = "increase -weight-formats"
643643 )
644644 """Add additional weights to the model descriptions converted from available
645645 formats to improve deployability."""
You can’t perform that action at this time.
0 commit comments