summaryrefslogtreecommitdiff
path: root/pylint/pyreverse/printer.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/pyreverse/printer.py')
-rw-r--r--pylint/pyreverse/printer.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/pylint/pyreverse/printer.py b/pylint/pyreverse/printer.py
index cdbf7e3c8..f08c74602 100644
--- a/pylint/pyreverse/printer.py
+++ b/pylint/pyreverse/printer.py
@@ -1,6 +1,6 @@
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
-# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE
-# Copyright (c) https://github.com/PyCQA/pylint/blob/main/CONTRIBUTORS.txt
+# For details: https://github.com/pylint-dev/pylint/blob/main/LICENSE
+# Copyright (c) https://github.com/pylint-dev/pylint/blob/main/CONTRIBUTORS.txt
"""Base class defining the interface for a printer."""
@@ -17,13 +17,11 @@ from pylint.pyreverse.utils import get_annotation_label
class NodeType(Enum):
CLASS = "class"
- INTERFACE = "interface"
PACKAGE = "package"
class EdgeType(Enum):
INHERITS = "inherits"
- IMPLEMENTS = "implements"
ASSOCIATION = "association"
AGGREGATION = "aggregation"
USES = "uses"