8000 refactor: use built-in typing.Annotated instead of typing_extensions · shingjan/python-sdk@a77aaa7 · GitHub
[go: up one dir, main page]

Skip to content

Commit a77aaa7

Browse files
committed
refactor: use built-in typing.Annotated instead of typing_extensions
1 parent 83efb10 commit a77aaa7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mcp/cli/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
import subprocess
77
import sys
88
from pathlib import Path
9+
from typing import Annotated
910

1011
try:
1112
import typer
12-
from typing_extensions import Annotated
1313
except ImportError:
1414
print("Error: typer is required. Install with 'pip install mcp[cli]'")
1515
sys.exit(1)

0 commit comments

Comments
 (0)
0