Skip to content

Commit

Permalink
[pre-commit.ci lite] apply automatic fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci-lite[bot] authored Jan 26, 2024
1 parent 2c5f501 commit 3de5578
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cursorless-engine/src/asyncIteratorToList.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export async function asyncIteratorToList<T>(
iterator: AsyncIterable<T>
iterator: AsyncIterable<T>,
): Promise<T[]> {
const list: T[] = [];
for await (const item of iterator) {
Expand Down

0 comments on commit 3de5578

Please sign in to comment.