Skip to content

Commit

Permalink
feat: clean elements.__init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Schneider committed Dec 19, 2023
1 parent e0ccbe4 commit 6a68e4c
Showing 1 changed file with 9 additions and 26 deletions.
35 changes: 9 additions & 26 deletions capella2polarion/elements/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,32 +2,15 @@
# SPDX-License-Identifier: Apache-2.0
"""Objects for synchronization of capella objects to polarion workitems."""

from __future__ import annotations

__all__ = [
"delete_work_items",
"get_types",
"get_elements_and_type_map",
"STATUS_DELETE",
]

import logging
import pathlib
import typing
from itertools import chain

import capellambse
import polarion_rest_api_client as polarion_api
import yaml
from capellambse.model import common
from capellambse.model import diagram as diag

from . import ( # pylint: disable=cyclic-import
api_helper,
element,
helpers,
serialize,
)
# from __future__ import annotations

# __all__ = [
# "delete_work_items",
# "get_types",
# "get_elements_and_type_map",
# "STATUS_DELETE",
# ]


# logger = logging.getLogger(__name__)

Expand Down

0 comments on commit 6a68e4c

Please sign in to comment.