From c7e42d2660f3b3c458c3de95bce195864a29418e Mon Sep 17 00:00:00 2001 From: GH05TCREW Date: Thu, 11 Dec 2025 20:31:40 -0700 Subject: [PATCH] style: apply ruff fixes --- ghostcrew/interface/tui.py | 2 +- ghostcrew/tools/web_search/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ghostcrew/interface/tui.py b/ghostcrew/interface/tui.py index ef69a13..b118086 100644 --- a/ghostcrew/interface/tui.py +++ b/ghostcrew/interface/tui.py @@ -20,7 +20,7 @@ from textual.containers import ( Vertical, ) from textual.reactive import reactive -from textual.screen import ModalScreen, Screen +from textual.screen import ModalScreen from textual.scrollbar import ScrollBar, ScrollBarRender from textual.timer import Timer from textual.widgets import Button, Input, Static, Tree diff --git a/ghostcrew/tools/web_search/__init__.py b/ghostcrew/tools/web_search/__init__.py index af7a8d8..e8788c4 100644 --- a/ghostcrew/tools/web_search/__init__.py +++ b/ghostcrew/tools/web_search/__init__.py @@ -76,7 +76,7 @@ async def web_search(arguments: dict, runtime: "Runtime") -> str: def _format_results(query: str, data: dict) -> str: """ Format Tavily results for LLM consumption. - + Returns a lean format with summary + titles + URLs only. Content snippets are excluded to prevent LLM from regurgitating noisy web scrapes in its response.