Skip to content

Commit

Permalink
remove superfluous semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
wesm committed Dec 17, 2024
1 parent f01c825 commit 6ae47db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/positron-duckdb/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1221,7 +1221,7 @@ export class DataExplorerRpcHandler {
fs.watchFile(filePath, { interval: 1000 }, async () => {
const newTableName = `positron_${this._tableIndex++}`;

await this.createTableFromFilePath(filePath, newTableName, true);;
await this.createTableFromFilePath(filePath, newTableName, true);

const newSchema = (await this.db.runQuery(`DESCRIBE ${newTableName};`)).toArray();
await tableView.onFileUpdated(newTableName, newSchema);
Expand Down

0 comments on commit 6ae47db

Please sign in to comment.