Skip to content

Commit

Permalink
fix a duplicated parameter name
Browse files Browse the repository at this point in the history
  • Loading branch information
xiuliren committed Jul 10, 2024
1 parent d804122 commit c49d792
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chunkflow/flow/flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -1426,7 +1426,7 @@ def load_zarr(tasks, store: str, path: str, chunk_start: tuple, voxel_size: tupl
@main.command('save-zarr')
@click.option('--store', '-s', type=str, required=True,
help = 'Zarr store path')
@click.option('--shape', '-s', type=click.INT, nargs=3,
@click.option('--shape', '-p', type=click.INT, nargs=3,
default=None, callback=default_none,
help='shape of the whole volume.')
@click.option('--input-chunk-name', '-i', type=str, default=DEFAULT_CHUNK_NAME,
Expand Down

0 comments on commit c49d792

Please sign in to comment.