From df8f5cd6f3c52d0ce5cc8e901fe1030ca06d31aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Sun, 30 Nov 2025 15:38:22 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=85=20Fix=20tests=20for=20Python=203.8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test_security_scopes.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_security_scopes.py b/tests/test_security_scopes.py index bfeae62fb..248fd2bcc 100644 --- a/tests/test_security_scopes.py +++ b/tests/test_security_scopes.py @@ -1,8 +1,9 @@ -from typing import Annotated, Dict +from typing import Dict import pytest from fastapi import Depends, FastAPI, Security from fastapi.testclient import TestClient +from typing_extensions import Annotated @pytest.fixture(name="call_counter")