Skip to content

Commit

Permalink
Make output file required
Browse files Browse the repository at this point in the history
  • Loading branch information
eleftherioszisis committed Mar 3, 2022
1 parent d896651 commit be163ac
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 be163ac

Please sign in to comment.