From 44980ea80b4dcb9eff1e806421fff6218f63e85c Mon Sep 17 00:00:00 2001 From: Kworz Date: Mon, 1 Jul 2024 11:45:08 +0200 Subject: [PATCH] lint fix --- packages/turbine/src/pbr/ProgramBlockStep.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/turbine/src/pbr/ProgramBlockStep.ts b/packages/turbine/src/pbr/ProgramBlockStep.ts index f499925a..519a582a 100644 --- a/packages/turbine/src/pbr/ProgramBlockStep.ts +++ b/packages/turbine/src/pbr/ProgramBlockStep.ts @@ -176,7 +176,7 @@ export class ProgramBlockStep if(this.state === "crashed") { this.state = "crashed"; - TurbineEventLoop.emit('log', 'info', `PBS-${this.name}: Ended step with state ${this.state}`); + TurbineEventLoop.emit('log', 'info', `PBS-${this.name}: Ended step with state ${this.state}`); this.endTime = Date.now(); this.progresses[this.runCount - 1] = this.progress; @@ -251,7 +251,7 @@ export class ProgramBlockStep /** Estimate the run time of this step */ private estimateRunTime(): number { - return [...this.endBlocks, ...this.startBlocks, ...this.blocks].reduce((p, c) => p + c.estimatedRunTime, 0);; + return [...this.endBlocks, ...this.startBlocks, ...this.blocks].reduce((p, c) => p + c.estimatedRunTime, 0); } /**