Skip to content

Commit 6d9b07d

Browse files
agusdmbAgustin Marquez
andauthored
fix mermaid dotted arrow (#9031)
Co-authored-by: Agustin Marquez <[email protected]>
1 parent 48781fe commit 6d9b07d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pylint/pyreverse/mermaidjs_printer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class MermaidJSPrinter(Printer):
2424
EdgeType.ASSOCIATION: "--*",
2525
EdgeType.AGGREGATION: "--o",
2626
EdgeType.USES: "-->",
27-
EdgeType.TYPE_DEPENDENCY: "-.->",
27+
EdgeType.TYPE_DEPENDENCY: "..>",
2828
}
2929

3030
def _open_graph(self) -> None:

tests/pyreverse/functional/package_diagrams/type_check_imports/packages.mmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ classDiagram
1111
}
1212
mod_b --> mod_a
1313
mod_d --> mod_a
14-
mod_c -.-> mod_a
14+
mod_c ..> mod_a

0 commit comments

Comments
 (0)