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 48781fe commit 6d9b07dCopy full SHA for 6d9b07d
2 files changed
pylint/pyreverse/mermaidjs_printer.py
@@ -24,7 +24,7 @@ class MermaidJSPrinter(Printer):
24
EdgeType.ASSOCIATION: "--*",
25
EdgeType.AGGREGATION: "--o",
26
EdgeType.USES: "-->",
27
- EdgeType.TYPE_DEPENDENCY: "-.->",
+ EdgeType.TYPE_DEPENDENCY: "..>",
28
}
29
30
def _open_graph(self) -> None:
tests/pyreverse/functional/package_diagrams/type_check_imports/packages.mmd
@@ -11,4 +11,4 @@ classDiagram
11
12
mod_b --> mod_a
13
mod_d --> mod_a
14
- mod_c -.-> mod_a
+ mod_c ..> mod_a
0 commit comments