File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
src/mcp_agent/cli/commands Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 1111from rich .console import Console
1212from rich .panel import Panel
1313from rich .table import Table
14+
15+ from mcp_agent .llm .provider_key_manager import API_KEY_HINT_TEXT , ProviderKeyManager
1416from mcp_agent .llm .provider_types import Provider
15- from mcp_agent .llm .provider_key_manager import ProviderKeyManager , API_KEY_HINT_TEXT
1617
1718app = 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 :
You can’t perform that action at this time.
0 commit comments