Skip to content

Commit

Permalink
Fix a few help texts
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
JelleZijlstra authored and mr-c committed Feb 21, 2022
1 parent 8ea0fdf commit 4c65bdf
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions cwltool/argparser.py
Original file line number Diff line number Diff line change
Expand Up @@ -478,14 +478,18 @@ def arg_parser() -> argparse.ArgumentParser:
conda_dependencies = argparse.SUPPRESS

if SOFTWARE_REQUIREMENTS_ENABLED:
dependency_resolvers_configuration_help = "Dependency resolver "
"configuration file describing how to adapt 'SoftwareRequirement' "
"packages to current system."
dependency_resolvers_configuration_help = (
"Dependency resolver "
"configuration file describing how to adapt 'SoftwareRequirement' "
"packages to current system."
)
dependencies_directory_help = (
"Defaut root directory used by dependency resolvers configuration."
"Default root directory used by dependency resolvers configuration."
)
use_biocontainers_help = (
"Use biocontainers for tools without an "
"explicitly annotated Docker container."
)
use_biocontainers_help = "Use biocontainers for tools without an "
"explicitly annotated Docker container."
conda_dependencies = (
"Short cut to use Conda to resolve 'SoftwareRequirement' packages."
)
Expand Down

0 comments on commit 4c65bdf

Please sign in to comment.