1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-19 09:15:30 +03:00
aports/testing/py3-xsdata/typing.patch
psykose 8b33cfb995 testing/py3-xsdata: new aport
https://github.com/tefra/xsdata
Naive XML & JSON Bindings for python
2023-07-27 07:49:37 +00:00

15 lines
463 B
Diff

diff --git a/xsdata/formats/dataclass/typing.py b/xsdata/formats/dataclass/typing.py
index 446c767..182557e 100644
--- a/xsdata/formats/dataclass/typing.py
+++ b/xsdata/formats/dataclass/typing.py
@@ -6,8 +6,8 @@ from typing import Type
from typing import TypeVar
from typing import Union
-from typing_extensions import get_args
-from typing_extensions import get_origin
+from typing import get_args
+from typing import get_origin
NONE_TYPE = type(None)