Skip to content

Commit

Permalink
Fix config-path option parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Nov 20, 2019
1 parent 0355dee commit c1c428f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions neuromation/cli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,9 @@ def print_options(
)
@click.option(
"--neuromation-config",
type=click.Path(dir_okay=False),
type=click.Path(dir_okay=True, file_okay=False),
required=False,
help="Path to config file.",
help="Path to config directory.",
default=DEFAULT_CONFIG_PATH,
metavar="PATH",
envvar=CONFIG_ENV_NAME,
Expand Down

0 comments on commit c1c428f

Please sign in to comment.