Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,9 @@ This will show the list of validation options.
```
-ca, --cache TEXT Relative path to cache files containing pre
loaded metadata and rules
-ps, --pool-size INTEGER Number of parallel processes for validation
-dep, --dotenv-path Path to the .env file used to set environment variables.
-d, --data TEXT Path to directory containing data files.
-ps, --pool-size INTEGER Number of parallel processes for validation
-dep, --dotenv-path Path to the .env file used to set environment variables.
-d, --data TEXT Path to directory containing data files. Should only be provided once. If provided more than once, only the last value will be recorded.
-dp, --dataset-path TEXT Absolute path to dataset file. Can be specified multiple times.
-dxp, --define-xml-path TEXT Path to Define-XML. DEFINE_XML environment variable can be used to pass value.
-l, --log-level [info|debug|error|critical|disabled|warn]
Expand Down
3 changes: 2 additions & 1 deletion core.py
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,8 @@ def load_custom_dotenv_from_data_options(ctx, param, value):
"-d",
"--data",
required=False,
help=f"Path to directory containing data files ({VALIDATION_FORMATS_MESSAGE})",
help=f"Path to directory containing data files ({VALIDATION_FORMATS_MESSAGE}). "
"Should be provided once. If provided more than once, only the last value will be recorded",
callback=load_custom_dotenv_from_data_options,
)
@click.option(
Expand Down
Loading