Skip to content

Commit

Permalink
fixing imports
Browse files Browse the repository at this point in the history
  • Loading branch information
sanbrock committed Jun 19, 2023
1 parent 49fc2dc commit b65bf23
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dev_tools/nyaml2nxdl/nyaml2nxdl_backward_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@
from typing import Dict
from typing import List

from .nyaml2nxdl_helper import remove_namespace_from_tag
from .nyaml2nxdl_helper import cleaning_empty_lines
from .nyaml2nxdl_helper import get_node_parent_info
from .nyaml2nxdl_helper import get_yaml_escape_char_dict
from .nyaml2nxdl_helper import remove_namespace_from_tag

DEPTH_SIZE = " "
CMNT_TAG = "!--"
Expand Down
3 changes: 2 additions & 1 deletion dev_tools/nyaml2nxdl/nyaml2nxdl_forward_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,14 @@
from xml.dom import minidom

import yaml
from .nyaml2nxdl_helper import remove_namespace_from_tag

from ..utils import nexus as pynxtools_nxlib
from .nyaml2nxdl.comment_collector import CommentCollector
from .nyaml2nxdl_helper import LineLoader
from .nyaml2nxdl_helper import cleaning_empty_lines
from .nyaml2nxdl_helper import get_yaml_escape_char_reverter_dict
from .nyaml2nxdl_helper import nx_name_type_resolving
from .nyaml2nxdl_helper import remove_namespace_from_tag

# pylint: disable=too-many-lines, global-statement, invalid-name
DOM_COMMENT = (
Expand Down

0 comments on commit b65bf23

Please sign in to comment.