We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be2f1d4 commit 00baf6fCopy full SHA for 00baf6f
src/mcp_agent/cli/cloud/commands/auth/logout/main.py
@@ -1,6 +1,5 @@
1
"""MCP Agent Cloud logout command implementation."""
2
3
-import typer
4
from rich.prompt import Confirm
5
6
from mcp_agent.cli.auth import clear_credentials, load_credentials
src/mcp_agent/cli/cloud/commands/auth/whoami/main.py
@@ -1,15 +1,12 @@
"""MCP Agent Cloud whoami command implementation."""
-from typing import Optional
from rich.console import Console
7
from rich.panel import Panel
8
from rich.table import Table
9
10
from mcp_agent.cli.auth import load_credentials
11
from mcp_agent.cli.exceptions import CLIError
12
-from mcp_agent.cli.utils.ux import print_error, print_info
13
14
15
def whoami() -> None:
0 commit comments