Skip to content

Commit

Permalink
fix(realization-view): Increase stability of edge creation for owners
Browse files Browse the repository at this point in the history
Merge pull request #129 from DSD-DBS/fix-realization-view
  • Loading branch information
ewuerger authored Jul 31, 2024
2 parents b72032b + 708cf9f commit ddc8d41
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ repos:
hooks:
- id: isort
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.10.0
rev: v1.11.1
hooks:
- id: mypy
- repo: https://github.com/Lucas-C/pre-commit-hooks
Expand Down Expand Up @@ -68,6 +68,6 @@ repos:
- --comment-style
- "/*| *| */"
- repo: https://github.com/fsfe/reuse-tool
rev: v3.0.2
rev: v4.0.3
hooks:
- id: reuse
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 @@ -84,7 +84,7 @@ def _collect_data(
exchange_filter,
functions=elements,
attributes=(src_attr, trg_attr),
)
) # type:ignore[call-arg]

made_edges: set[str] = set()
for elem in elements:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ def collector(

if (
source is not None
and source.owner is not None
and source.owner.uuid in children
and owner.uuid in children
):
Expand Down

0 comments on commit ddc8d41

Please sign in to comment.