diff options
Diffstat (limited to 'pylint/pyreverse/vcg_printer.py')
-rw-r--r-- | pylint/pyreverse/vcg_printer.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/pylint/pyreverse/vcg_printer.py b/pylint/pyreverse/vcg_printer.py index b9e2e94f3..2a2591265 100644 --- a/pylint/pyreverse/vcg_printer.py +++ b/pylint/pyreverse/vcg_printer.py @@ -152,7 +152,6 @@ EDGE_ATTRS = { SHAPES: dict[NodeType, str] = { NodeType.PACKAGE: "box", NodeType.CLASS: "box", - NodeType.INTERFACE: "ellipse", } # pylint: disable-next=consider-using-namedtuple-or-dataclass ARROWS: dict[EdgeType, dict[str, str | int]] = { @@ -166,12 +165,6 @@ ARROWS: dict[EdgeType, dict[str, str | int]] = { "backarrowstyle": "none", "backarrowsize": 10, }, - EdgeType.IMPLEMENTS: { - "arrowstyle": "solid", - "backarrowstyle": "none", - "linestyle": "dotted", - "backarrowsize": 10, - }, EdgeType.ASSOCIATION: { "arrowstyle": "solid", "backarrowstyle": "none", |