Skip to content

Commit 6f381fb

Browse files
committed
lint
1 parent a855b86 commit 6f381fb

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/mcp_agent/cli/commands/check_config.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@
1111
from rich.console import Console
1212
from rich.panel import Panel
1313
from rich.table import Table
14+
15+
from mcp_agent.llm.provider_key_manager import API_KEY_HINT_TEXT, ProviderKeyManager
1416
from mcp_agent.llm.provider_types import Provider
15-
from mcp_agent.llm.provider_key_manager import ProviderKeyManager, API_KEY_HINT_TEXT
1617

1718
app = typer.Typer(
1819
help="Check and diagnose FastAgent configuration",
@@ -427,7 +428,7 @@ def show(
427428
parsed = yaml.safe_load(content)
428429

429430
# Show parsing success status
430-
console.print(f"[green]YAML syntax is valid[/green]")
431+
console.print("[green]YAML syntax is valid[/green]")
431432
if parsed is None:
432433
console.print("[yellow]Warning: File is empty or contains only comments[/yellow]\n")
433434
else:

0 commit comments

Comments
 (0)