From 69a8d588504fe89a2a9b9463c928468f9d37932c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Pstr=C4=85g?= Date: Mon, 23 Sep 2024 10:23:50 +0100 Subject: [PATCH] fix tests --- tests/unit/iql/test_iql_parser.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/unit/iql/test_iql_parser.py b/tests/unit/iql/test_iql_parser.py index babfa4ed..70b71f2e 100644 --- a/tests/unit/iql/test_iql_parser.py +++ b/tests/unit/iql/test_iql_parser.py @@ -1,8 +1,9 @@ import re from dataclasses import dataclass -from typing import Annotated, List, Union +from typing import List, Union import pytest +from typing_extensions import Annotated from dbally.context.context import BaseCallerContext from dbally.iql import IQLArgumentParsingError, IQLUnsupportedSyntaxError, syntax