Skip to content

Commit 765f0aa

Browse files
committed
chore: format fix
1 parent a57528d commit 765f0aa

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

src/api/providers/featherless.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
import { DEEP_SEEK_DEFAULT_TEMPERATURE, type FeatherlessModelId, featherlessDefaultModelId, featherlessModels } from "@roo-code/types"
1+
import {
2+
DEEP_SEEK_DEFAULT_TEMPERATURE,
3+
type FeatherlessModelId,
4+
featherlessDefaultModelId,
5+
featherlessModels,
6+
} from "@roo-code/types"
27
import { Anthropic } from "@anthropic-ai/sdk"
38
import OpenAI from "openai"
49

src/core/tools/codebaseSearchTool.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export async function codebaseSearchTool(
1717
removeClosingTag: RemoveClosingTag,
1818
) {
1919
const toolName = "codebase_search"
20-
const workspacePath = (cline.cwd && cline.cwd.trim() !== '') ? cline.cwd : getWorkspacePath()
20+
const workspacePath = cline.cwd && cline.cwd.trim() !== "" ? cline.cwd : getWorkspacePath()
2121

2222
if (!workspacePath) {
2323
// This case should ideally not happen if Cline is initialized correctly

src/services/tree-sitter/queries/c-sharp.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,3 @@ export default `
6363
; LINQ expressions
6464
(query_expression) @definition.linq_expression
6565
`
66-
67-

0 commit comments

Comments
 (0)