Skip to content

Commit 4256260

Browse files
committed
Remove unnecessary typing_extensions dependency
1 parent fd15b01 commit 4256260

5 files changed

Lines changed: 4 additions & 5 deletions

File tree

app/routers/airline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from typing import Union
2-
from typing_extensions import Annotated
2+
from typing import Annotated
33

44
from couchbase.exceptions import DocumentExistsException, DocumentNotFoundException
55
from app.db import get_db

app/routers/airport.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from typing import Union
2-
from typing_extensions import Annotated
2+
from typing import Annotated
33

44
from couchbase.exceptions import DocumentExistsException, DocumentNotFoundException
55
from app.db import get_db as CouchbaseClient

app/routers/hotel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from typing import List, Optional
2-
from typing_extensions import Annotated
2+
from typing import Annotated
33

44
from app.db import get_db as CouchbaseClient
55
from fastapi import APIRouter, Depends, HTTPException, Query

app/routers/route.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from typing import Union
2-
from typing_extensions import Annotated
2+
from typing import Annotated
33

44
from couchbase.exceptions import DocumentExistsException, DocumentNotFoundException
55
from app.db import get_db as CouchbaseClient

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,4 @@ pydantic==2.13.3
55
pydantic-settings==2.14.0
66
pytest==9.0.3
77
python-dotenv==1.2.2
8-
typing_extensions==4.15.0
98
uvicorn==0.46.0

0 commit comments

Comments
 (0)