Skip to content

Commit f9b4c16

Browse files
committed
chore(registerTools): inline eslint-disable for handlerStrategy to fix lint warning
1 parent 055e31a commit f9b4c16

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/registerTools.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,9 @@ type RegisterOptions = {
1212
toolsetGroup: ToolsetSource;
1313
prefix: string;
1414
onlyEnabled?: boolean;
15-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
1615
handlerStrategy: (
17-
tool: ToolDefinition<any, any> | DynamicToolDefinition<any>
18-
) => (...args: any[]) => any;
16+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
17+
tool: ToolDefinition<any, any> | DynamicToolDefinition<any>) => (...args: any[]) => any;
1918
};
2019

2120
export function registerTools(

0 commit comments

Comments
 (0)