Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Kworz committed Jul 1, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 52bda7c commit 44980ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/turbine/src/pbr/ProgramBlockStep.ts
Original file line number Diff line number Diff line change
@@ -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);
}

/**

0 comments on commit 44980ea

Please sign in to comment.