We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3f4364 commit e62636fCopy full SHA for e62636f
pylint/pyreverse/writer.py
@@ -119,7 +119,12 @@ def write_classes(self, diagram: ClassDiagram) -> None:
119
120
if self.config.no_standalone and not any(
121
obj in (rel.from_object, rel.to_object)
122
- for rel_type in ("specialization", "association", "aggregation")
+ for rel_type in (
123
+ "specialization",
124
+ "association",
125
+ "aggregation",
126
+ "composition",
127
+ )
128
for rel in diagram.get_relationships(rel_type)
129
):
130
continue
0 commit comments