Skip to content

Commit 4c65bdf

Browse files
JelleZijlstramr-c
authored andcommitted
Fix a few help texts
The continued strings on a separate line just get ignored by the runtime. You need to put them in parentheses to turn them into a single string.
1 parent 8ea0fdf commit 4c65bdf

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

cwltool/argparser.py

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -478,14 +478,18 @@ def arg_parser() -> argparse.ArgumentParser:
478478
conda_dependencies = argparse.SUPPRESS
479479

480480
if SOFTWARE_REQUIREMENTS_ENABLED:
481-
dependency_resolvers_configuration_help = "Dependency resolver "
482-
"configuration file describing how to adapt 'SoftwareRequirement' "
483-
"packages to current system."
481+
dependency_resolvers_configuration_help = (
482+
"Dependency resolver "
483+
"configuration file describing how to adapt 'SoftwareRequirement' "
484+
"packages to current system."
485+
)
484486
dependencies_directory_help = (
485-
"Defaut root directory used by dependency resolvers configuration."
487+
"Default root directory used by dependency resolvers configuration."
488+
)
489+
use_biocontainers_help = (
490+
"Use biocontainers for tools without an "
491+
"explicitly annotated Docker container."
486492
)
487-
use_biocontainers_help = "Use biocontainers for tools without an "
488-
"explicitly annotated Docker container."
489493
conda_dependencies = (
490494
"Short cut to use Conda to resolve 'SoftwareRequirement' packages."
491495
)

0 commit comments

Comments
 (0)