Skip to content

Commit

Permalink
fix(class-tree): Fix property duplication
Browse files Browse the repository at this point in the history
  • Loading branch information
ewuerger committed Nov 1, 2023
1 parent 0e6c7cc commit 4f1870c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions capellambse_context_diagrams/collectors/class_tree.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,7 @@ def _process_box(
) -> None:
if obj.uuid not in self.made_boxes:
self.made_boxes.add(obj.uuid)
box = self._make_box(obj, partition, params)
self._set_data_types_and_labels(box, obj)
self._make_box(obj, partition, params)

def _make_box(
self, obj: information.Class, partition: int, params: dict[str, t.Any]
Expand Down

0 comments on commit 4f1870c

Please sign in to comment.