diff --git a/src/TaskRunner.ts b/src/TaskRunner.ts index 63ba44e..e708247 100644 --- a/src/TaskRunner.ts +++ b/src/TaskRunner.ts @@ -129,7 +129,7 @@ export class TaskRunner { // Process nodes and edges in a single pass over input steps const processedNodes = new Set(); - for (const step of steps) { + for (const step of steps) { // NOSONAR const name = step.name; const stepId = getUniqueId(name); @@ -142,7 +142,7 @@ export class TaskRunner { } if (step.dependencies) { - for (const dep of step.dependencies) { + for (const dep of step.dependencies) { // NOSONAR const depId = getUniqueId(dep); edgeLines.add(` ${depId} --> ${stepId}`); }