Skip to content

Commit

Permalink
remove un-use lib
Browse files Browse the repository at this point in the history
  • Loading branch information
tunglxfast committed Dec 17, 2024
1 parent 0422542 commit fa82a6d
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion datamimic_ce/parsers/include_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# This software is licensed under the MIT License.
# See LICENSE file for the full text of the license.
# For questions and support, contact: [email protected]
from typing import Any, cast
from typing import Any
from xml.etree.ElementTree import Element

from datamimic_ce.constants.element_constants import EL_INCLUDE
Expand Down
1 change: 0 additions & 1 deletion datamimic_ce/parsers/item_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
# For questions and support, contact: [email protected]

from pathlib import Path
from typing import cast
from xml.etree.ElementTree import Element

from datamimic_ce.constants.element_constants import EL_ITEM
Expand Down
1 change: 0 additions & 1 deletion datamimic_ce/parsers/list_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
# For questions and support, contact: [email protected]

from pathlib import Path
from typing import Any, cast
from xml.etree.ElementTree import Element

from datamimic_ce.constants.element_constants import EL_LIST
Expand Down
2 changes: 1 addition & 1 deletion datamimic_ce/parsers/memstore_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# This software is licensed under the MIT License.
# See LICENSE file for the full text of the license.
# For questions and support, contact: [email protected]
from typing import Any, cast
from typing import Any
from xml.etree.ElementTree import Element

from datamimic_ce.constants.element_constants import EL_MEMSTORE
Expand Down
1 change: 0 additions & 1 deletion datamimic_ce/parsers/nested_key_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
# For questions and support, contact: [email protected]

from pathlib import Path
from typing import cast
from xml.etree.ElementTree import Element

from datamimic_ce.constants.element_constants import EL_NESTED_KEY
Expand Down
2 changes: 1 addition & 1 deletion datamimic_ce/parsers/reference_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# This software is licensed under the MIT License.
# See LICENSE file for the full text of the license.
# For questions and support, contact: [email protected]
from typing import Any, cast
from typing import Any
from xml.etree.ElementTree import Element

from datamimic_ce.constants.element_constants import EL_REFERENCE
Expand Down
2 changes: 1 addition & 1 deletion datamimic_ce/parsers/variable_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def __init__(
class_factory_util=class_factory_util,
)

def parse(self, parent_stmt: Statement, has_parent_setup: bool | None = False) -> VariableStatement: # TODO: mypy issue [override] -> different arguments
def parse(self, parent_stmt: Statement, has_parent_setup: bool | None = False) -> VariableStatement: # TODO: mypy issue [override]
"""
Parse element "variable" into VariableStatement
:return:
Expand Down

0 comments on commit fa82a6d

Please sign in to comment.