Skip to content

Commit 00bf69e

Browse files
qchappCopilot
andauthored
Update src/ai_agent/agent/tools/repo_info_tool.py
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent cde0d7a commit 00bf69e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ai_agent/agent/tools/repo_info_tool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ def _extract_install(files: List[FetchedFile]) -> List[tuple[str, str]]:
259259
continue
260260
for m in INSTALL_PAT.finditer(f.content):
261261
out.append((m.group(0).strip(), f.path))
262-
return _dedupe_pairs(out)[:3] # <-- changed
262+
return _dedupe_pairs(out)[:3]
263263

264264
def _extract_cli(files: List[FetchedFile]) -> List[tuple[str, str]]:
265265
out: List[tuple[str,str]] = []

0 commit comments

Comments
 (0)