style: apply ruff fixes

This commit is contained in:
GH05TCREW
2025-12-11 20:31:40 -07:00
parent a404ca66fe
commit c7e42d2660
2 changed files with 2 additions and 2 deletions

View File

@@ -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

View File

@@ -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.