Skip to content
Snippets Groups Projects
Verified Commit e9173004 authored by Leon Mauritz Möller's avatar Leon Mauritz Möller
Browse files

adapter.xml: import TypedDict from mypy_extensions

remove unused import List
parent c62d7823
No related branches found
No related tags found
1 merge request!24adapter: add xml deserialization
Pipeline #261497 passed
...@@ -38,7 +38,8 @@ from ... import model ...@@ -38,7 +38,8 @@ from ... import model
import xml.etree.ElementTree as ElTree import xml.etree.ElementTree as ElTree
import logging import logging
from typing import Any, Callable, Dict, IO, Iterable, List, Optional, Set, Tuple, Type, TypedDict, TypeVar from typing import Any, Callable, Dict, IO, Iterable, Optional, Set, Tuple, Type, TypeVar
from mypy_extensions import TypedDict # TODO: import this from typing should we require python 3.8+ at some point
from .xml_serialization import NS_AAS, NS_AAS_COMMON, NS_ABAC, NS_IEC, NS_XSI from .xml_serialization import NS_AAS, NS_AAS_COMMON, NS_ABAC, NS_IEC, NS_XSI
from .._generic import MODELING_KIND_INVERSE, ASSET_KIND_INVERSE, KEY_ELEMENTS_INVERSE, KEY_TYPES_INVERSE,\ from .._generic import MODELING_KIND_INVERSE, ASSET_KIND_INVERSE, KEY_ELEMENTS_INVERSE, KEY_TYPES_INVERSE,\
IDENTIFIER_TYPES_INVERSE, ENTITY_TYPES_INVERSE, IEC61360_DATA_TYPES_INVERSE, IEC61360_LEVEL_TYPES_INVERSE,\ IDENTIFIER_TYPES_INVERSE, ENTITY_TYPES_INVERSE, IEC61360_DATA_TYPES_INVERSE, IEC61360_LEVEL_TYPES_INVERSE,\
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment