Skip to content

Commit 596c233

Browse files
committed
reformat
1 parent dc0e4d3 commit 596c233

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/tools/tool.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ export abstract class ToolBase {
105105
if (errorClarification) {
106106
logger.debug(
107107
LogId.toolDisabled,
108-
"tool",
108+
"tool",
109109
`Prevented registration of ${this.name} because ${errorClarification} is disabled in the config`
110110
);
111111

@@ -139,7 +139,9 @@ export abstract class ToolBase {
139139
* @param args - The arguments passed to the tool
140140
* @returns The tool metadata
141141
*/
142-
protected resolveTelemetryMetadata(...args: Parameters<ToolCallback<typeof this.argsShape>>): TelemetryToolMetadata {
142+
protected resolveTelemetryMetadata(
143+
...args: Parameters<ToolCallback<typeof this.argsShape>>
144+
): TelemetryToolMetadata {
143145
const toolMetadata: TelemetryToolMetadata = {};
144146
try {
145147
if (!args.length) {

0 commit comments

Comments
 (0)