Skip to content

Commit

Permalink
Make output file in morph_check required (#992)
Browse files Browse the repository at this point in the history
  • Loading branch information
eleftherioszisis committed Mar 4, 2022
1 parent e071ba5 commit 0b7b5ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neurom/apps/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def stats(datapath, config, output, full_config, as_population, ignored_exceptio
default=morph_check.EXAMPLE_CONFIG, show_default=True,
help='Configuration File')
@click.option('-o', '--output', type=click.Path(exists=False, dir_okay=False),
help='Path to output json summary file')
help='Path to output json summary file', required=True)
def check(datapath, config, output):
"""Cli for apps/morph_check."""
morph_check.main(datapath, config, output)

0 comments on commit 0b7b5ea

Please sign in to comment.