Skip to content

Commit

Permalink
fix mermaid dotted arrow
Browse files Browse the repository at this point in the history
  • Loading branch information
Agustin Marquez authored and Agustin Marquez committed Sep 12, 2023
1 parent 7d04b75 commit 83ade2f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pylint/pyreverse/mermaidjs_printer.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class MermaidJSPrinter(Printer):
EdgeType.ASSOCIATION: "--*",
EdgeType.AGGREGATION: "--o",
EdgeType.USES: "-->",
EdgeType.TYPE_DEPENDENCY: "-.->",
EdgeType.TYPE_DEPENDENCY: "..>",
}

def _open_graph(self) -> None:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ classDiagram
}
mod_b --> mod_a
mod_d --> mod_a
mod_c -.-> mod_a
mod_c ..> mod_a

0 comments on commit 83ade2f

Please sign in to comment.