Browse Source

Update import in test, remove `from __future__ import annotations`

pull/13920/head
Yurii Motov 6 months ago
parent
commit
5405f129d0
  1. 4
      tests/test_dependency_pep695.py

4
tests/test_dependency_pep695.py

@ -1,8 +1,8 @@
from __future__ import annotations
from typing import Annotated
from fastapi import Depends, FastAPI
from fastapi.testclient import TestClient
from typing_extensions import Annotated, TypeAliasType
from typing_extensions import TypeAliasType
async def some_value() -> int:

Loading…
Cancel
Save