Skip to content

Commit

Permalink
fix: Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ewuerger committed Aug 23, 2024
1 parent d3c2c96 commit 2a03cd5
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 8 deletions.
5 changes: 2 additions & 3 deletions capellambse_context_diagrams/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,10 @@
from importlib import metadata

from capellambse.diagram import COLORS, CSSdef, capstyle
from capellambse.metamodel import fa, information
from capellambse.model import common
from capellambse.model.crosslayer import fa, information
from capellambse.model.layers import ctx, la, oa, pa
from capellambse.model.modeltypes import DiagramType
from capellambse.svg import decorations

from . import _elkjs, context, styling

Expand Down Expand Up @@ -144,7 +143,7 @@ def patch_styles(classes: cabc.Iterable[SupportedClass]) -> None:
See Also
--------
[capstyle.get_style][capellambse.diagram.get_style] : Default
[capstyle.get_style][capellambse.aird.capstyle.get_style] : Default
style getter.
"""
cap: dict[str, CSSdef] = {
Expand Down
2 changes: 1 addition & 1 deletion capellambse_context_diagrams/collectors/dataflow_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
import typing as t
from itertools import chain

from capellambse.metamodel import fa
from capellambse.model import modeltypes
from capellambse.model.crosslayer import fa
from capellambse.model.layers import oa

from .. import _elkjs, context
Expand Down
2 changes: 1 addition & 1 deletion capellambse_context_diagrams/collectors/default.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
from itertools import chain

from capellambse import helpers
from capellambse.metamodel import cs, fa
from capellambse.model import common
from capellambse.model.crosslayer import cs, fa
from capellambse.model.layers import ctx as sa
from capellambse.model.layers import la
from capellambse.model.modeltypes import DiagramType as DT
Expand Down
2 changes: 1 addition & 1 deletion capellambse_context_diagrams/collectors/exchanges.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
import operator
import typing as t

from capellambse.metamodel import cs, fa
from capellambse.model import common
from capellambse.model.crosslayer import cs, fa
from capellambse.model.modeltypes import DiagramType as DT

from .. import _elkjs, context
Expand Down
2 changes: 1 addition & 1 deletion capellambse_context_diagrams/collectors/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
import logging
import typing as t

from capellambse.metamodel import interaction
from capellambse.model import common, layers
from capellambse.model.crosslayer import interaction
from capellambse.model.modeltypes import DiagramType as DT

from .. import _elkjs, context, filters
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
import re
import typing as t

from capellambse.metamodel import cs, fa
from capellambse.model import common, crosslayer
from capellambse.model.crosslayer import cs, fa
from capellambse.model.layers import oa

from .. import _elkjs, context
Expand Down

0 comments on commit 2a03cd5

Please sign in to comment.