Skip to content

Commit

Permalink
Merge pull request #985 from dandi/cli
Browse files Browse the repository at this point in the history
Whitespace for string returns
  • Loading branch information
yarikoptic committed Apr 26, 2022
2 parents 5d54491 + cb029b4 commit b73f44d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dandi/bids_validator_xs.py
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,7 @@ def select_schema_dir(
if dataset_description:
if dataset_description in dataset_descriptions:
raise ValueError(
"You have selected files belonging to 2 different datasets."
"You have selected files belonging to 2 different datasets. "
"Please run the validator once per dataset."
)
else:
Expand Down Expand Up @@ -640,7 +640,7 @@ def select_schema_dir(
return schema_dir
else:
raise ValueError(
f"The expected schema directory {schema_dir} does not exist on the system."
f"The expected schema directory {schema_dir} does not exist on the system. "
"Please ensure the file exists or manually specify a schema version for "
"which the schemacode files are available on your system."
)
Expand Down
4 changes: 2 additions & 2 deletions dandi/cli/cmd_validate.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
"--report-flag",
"-r",
is_flag=True,
help="Whether to write a report under a"
"unique path in the current directory. Only usable if `--report` is not already used.",
help="Whether to write a report under a unique path in the current directory. "
"Only usable if `--report` is not already used.",
)
@click.argument("paths", nargs=-1, type=click.Path(exists=True, dir_okay=True))
@devel_debug_option()
Expand Down

0 comments on commit b73f44d

Please sign in to comment.