From 4199f66bfefbfd19ac22cb3599d13506997a4066 Mon Sep 17 00:00:00 2001 From: Chris Tsou Date: Wed, 15 May 2024 20:07:00 +0300 Subject: [PATCH] chore: Remove unnecessary import (#1040) --- xsdata/formats/dataclass/typing.py | 1 - 1 file changed, 1 deletion(-) diff --git a/xsdata/formats/dataclass/typing.py b/xsdata/formats/dataclass/typing.py index b8b54fea2..3782e246d 100644 --- a/xsdata/formats/dataclass/typing.py +++ b/xsdata/formats/dataclass/typing.py @@ -16,7 +16,6 @@ from types import UnionType # type: ignore except ImportError: UnionType = () # type: ignore -from typing_extensions import ForwardRef if (3, 9) <= sys.version_info[:2] <= (3, 10): # Backport this fix for python 3.9 and 3.10