Skip to content

Commit d6b6ffc

Browse files
lint
1 parent d56b57b commit d6b6ffc

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ export class Server {
218218
console.error("Connection string validation failed with error: ", error);
219219
throw new Error(
220220
"Connection string validation failed with error: " +
221-
(error instanceof Error ? error.message : String(error))
221+
(error instanceof Error ? error.message : String(error))
222222
);
223223
}
224224
}

src/tools/atlas-local/atlas-localTool.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ export abstract class AtlasToolBase extends ToolBase {
1010
args: ToolArgs<typeof this.argsShape>
1111
): Promise<CallToolResult> | CallToolResult {
1212

13-
// Error Handling for expected atlas-local errors go here
13+
// Error Handling for expected atlas-local errors go here
1414

1515
// For other types of errors, use the default error handling from the base class
1616
return super.handleError(error, args);
1717
}
18-
}
18+
}

src/tools/atlas-local/tools.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const AtlasLocalTools = [];
1+
export const AtlasLocalTools = [];

0 commit comments

Comments
 (0)