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 25, 2024
1 parent f0df55f commit 9175cf3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/cursorless-vscode/src/ide/vscode/VscodeFileSystem.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ export class VscodeFileSystem implements FileSystem {
public async initialize(): Promise<void> {
try {
await vscode.workspace.fs.createDirectory(
vscode.Uri.file(this.cursorlessDir));
vscode.Uri.file(this.cursorlessDir),
);
} catch (err) {
console.log("Cannot create cursorlessDir", this.cursorlessDir,
err);
console.log("Cannot create cursorlessDir", this.cursorlessDir, err);
}
}

Expand Down

0 comments on commit 9175cf3

Please sign in to comment.