From 548c3d18cb13fb1463bb717e0733db77147089c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Csaba=20Gy=C3=B6rgyi?= Date: Thu, 30 May 2024 19:45:06 +0200 Subject: [PATCH] Remove unnecessary TypeAlias import --- GTG/core/base_store.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GTG/core/base_store.py b/GTG/core/base_store.py index fde2ef214..30971b8a2 100644 --- a/GTG/core/base_store.py +++ b/GTG/core/base_store.py @@ -25,7 +25,7 @@ import logging from lxml.etree import _Element -from typing import Any, Dict, List, Optional, TypeVar, Generic, Protocol, TypeAlias +from typing import Any, Dict, List, Optional, TypeVar, Generic, Protocol log = logging.getLogger(__name__)