Skip to content

Commit 43f27e3

Browse files
committed
join more split strings
1 parent 8e0b646 commit 43f27e3

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

cwltool/argparser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def arg_parser() -> argparse.ArgumentParser:
9696
cidgroup.add_argument(
9797
"--cidfile-dir",
9898
type=str,
99-
help="Store the Docker container ID into a file in the specified " "directory.",
99+
help="Store the Docker container ID into a file in the specified directory.",
100100
default=None,
101101
dest="cidfile_dir",
102102
)

cwltool/command_line_tool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ def revmap_file(
260260
return f
261261

262262
raise WorkflowException(
263-
"Output File object is missing both 'location' " "and 'path' fields: %s" % f
263+
"Output File object is missing both 'location' and 'path' fields: %s" % f
264264
)
265265

266266

cwltool/docker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ def create_runtime(
425425
_logger.error(
426426
"--cidfile-dir %s error:\n%s",
427427
cidfile_dir,
428-
cidfile_dir + " is not a directory, " "please check it first",
428+
cidfile_dir + " is not a directory, please check it first",
429429
)
430430
exit(2)
431431
else:

cwltool/load_tool.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ def _convert_stdstreams_to_files(
164164
):
165165
if not isinstance(out, CommentedMap):
166166
raise ValidationException(
167-
"Output '{}' is not a valid " "OutputParameter.".format(out)
167+
"Output '{}' is not a valid OutputParameter.".format(out)
168168
)
169169
for streamtype in ["stdout", "stderr"]:
170170
if out.get("type") == streamtype:
@@ -311,7 +311,7 @@ def resolve_and_validate_document(
311311
if not isinstance(cwlVersion, str):
312312
with SourceLine(workflowobj, "cwlVersion", ValidationException):
313313
raise ValidationException(
314-
"'cwlVersion' must be a string, " "got {}".format(type(cwlVersion))
314+
"'cwlVersion' must be a string, got {}".format(type(cwlVersion))
315315
)
316316
# strip out version
317317
cwlVersion = re.sub(r"^(?:cwl:|https://w3id.org/cwl/cwl#)", "", cwlVersion)

cwltool/singularity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ def get_from_requirements(
273273

274274
if not self.get_image(cast(Dict[str, str], r), pull_image, force_pull):
275275
raise WorkflowException(
276-
"Container image {} not " "found".format(r["dockerImageId"])
276+
"Container image {} not found".format(r["dockerImageId"])
277277
)
278278

279279
return os.path.abspath(cast(str, r["dockerImageId"]))

tests/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def get_data(filename: str) -> str:
5454

5555
needs_docker = pytest.mark.skipif(
5656
not bool(distutils.spawn.find_executable("docker")),
57-
reason="Requires the docker executable on the " "system path.",
57+
reason="Requires the docker executable on the system path.",
5858
)
5959

6060
needs_singularity = pytest.mark.skipif(

0 commit comments

Comments
 (0)