Skip to content

Commit ef7e1fe

Browse files
eslint
1 parent d6b6ffc commit ef7e1fe

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

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

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
1-
import { CallToolResult } from "@modelcontextprotocol/sdk/types.js";
2-
import { ToolArgs, ToolBase, ToolCategory } from "../tool.js";
1+
import type { CallToolResult } from "@modelcontextprotocol/sdk/types.js";
2+
import type { ToolArgs, ToolCategory } from "../tool.js";
3+
import { ToolBase } from "../tool.js";
34

45
export abstract class AtlasToolBase extends ToolBase {
56
public category: ToolCategory = "atlas-local";
67

7-
88
protected handleError(
99
error: unknown,
1010
args: ToolArgs<typeof this.argsShape>
1111
): Promise<CallToolResult> | CallToolResult {
12-
1312
// Error Handling for expected atlas-local errors go here
1413

1514
// For other types of errors, use the default error handling from the base class

0 commit comments

Comments
 (0)