We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 053ee5b commit 5297cfbCopy full SHA for 5297cfb
cwlupgrader/main.py
@@ -433,8 +433,8 @@ def workflow_clean(document: Dict[str, Any]) -> None:
433
step["scatter"] = source
434
elif isinstance(step["scatter"], list) and len(step["scatter"]) > 1:
435
step["scatter"] = []
436
- for index, source in enumerate(step["scatter"]):
437
- with SourceLine(step["scatter"], index, Exception):
+ for index4, source in enumerate(step["scatter"]):
+ with SourceLine(step["scatter"], index4, Exception):
438
if source.startswith(step_id):
439
source = source[step_id_len:]
440
step["scatter"].append(source)
0 commit comments