Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pyreverse: Don't show multiple class association arrows #9055

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions doc/whatsnew/fragments/9045.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Don't show multiple class association arrows.
nickdrozd marked this conversation as resolved.
Show resolved Hide resolved

Refs #9045
5 changes: 5 additions & 0 deletions pylint/pyreverse/writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import argparse
import itertools
import os
from collections import defaultdict
from collections.abc import Iterable

from astroid import modutils, nodes
Expand Down Expand Up @@ -133,8 +134,10 @@ def write_classes(self, diagram: ClassDiagram) -> None:
rel.to_object.fig_id,
type_=EdgeType.INHERITS,
)
associations: dict[str, set[str]] = defaultdict(set)
# generate associations
for rel in diagram.get_relationships("association"):
associations[rel.from_object.fig_id].add(rel.to_object.fig_id)
self.printer.emit_edge(
rel.from_object.fig_id,
rel.to_object.fig_id,
Expand All @@ -143,6 +146,8 @@ def write_classes(self, diagram: ClassDiagram) -> None:
)
# generate aggregations
for rel in diagram.get_relationships("aggregation"):
if rel.to_object.fig_id in associations[rel.from_object.fig_id]:
continue
self.printer.emit_edge(
rel.from_object.fig_id,
rel.to_object.fig_id,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,3 @@ classDiagram
P --* D : x
P --* E : x
P --o B : x
P --o C : x