Skip to content

Commit

Permalink
fixup! npx standard --fix
Browse files Browse the repository at this point in the history
Signed-off-by: Miroslav Bajtoš <oss@bajtos.net>
  • Loading branch information
bajtos committed Dec 13, 2023
1 parent 19b025e commit a5c3396
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/spark.js
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ export default class Spark {
const baseDelay = APPROX_ROUND_LENGTH_IN_MS / this.#maxTasksPerNode
const delay = baseDelay - duration
if (delay > 0) {
console.log('Sleeping for %s seconds before starting the next task...', Math.round(delay/1000))
console.log('Sleeping for %s seconds before starting the next task...', Math.round(delay / 1000))
await sleep(delay)
}
}
Expand Down

0 comments on commit a5c3396

Please sign in to comment.