Skip to content

Commit c24c1e8

Browse files
committed
Make linter happy
1 parent 12e93ae commit c24c1e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cwltool/singularity.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,13 +135,13 @@ def is_version_3_10_or_newer() -> bool:
135135

136136
def _normalize_image_id(string: str) -> str:
137137
if ":" not in string:
138-
string+="_latest"
138+
string += "_latest"
139139
return string.replace("/", "_") + ".img"
140140

141141

142142
def _normalize_sif_id(string: str) -> str:
143143
if ":" not in string:
144-
string+="_latest"
144+
string += "_latest"
145145
return string.replace("/", "_") + ".sif"
146146

147147

0 commit comments

Comments
 (0)