Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
charlierudolph committed Jul 10, 2021
1 parent 2268a71 commit 4f9f722
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export default class Cli {
})
)
return async function () {
await Promise.all(formatters.map(f => f.finished()))
await Promise.all(formatters.map(async (f) => await f.finished()))
}
}

Expand Down

0 comments on commit 4f9f722

Please sign in to comment.