Skip to content

Commit 4de6535

Browse files
committed
remove unused imports
1 parent be2f1d4 commit 4de6535

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

src/mcp_agent/cli/auth/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import json
44
from dataclasses import dataclass
55
from datetime import datetime
6-
from typing import List, Optional
6+
from typing import Optional
77

88

99
@dataclass

src/mcp_agent/cli/cloud/commands/auth/logout/main.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
"""MCP Agent Cloud logout command implementation."""
22

3-
import typer
43
from rich.prompt import Confirm
54

65
from mcp_agent.cli.auth import clear_credentials, load_credentials

src/mcp_agent/cli/cloud/commands/auth/whoami/main.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
11
"""MCP Agent Cloud whoami command implementation."""
22

3-
from typing import Optional
43

5-
import typer
64
from rich.console import Console
75
from rich.panel import Panel
86
from rich.table import Table
97

108
from mcp_agent.cli.auth import load_credentials
119
from mcp_agent.cli.exceptions import CLIError
12-
from mcp_agent.cli.utils.ux import print_error, print_info
1310

1411

1512
def whoami() -> None:

0 commit comments

Comments
 (0)