summaryrefslogtreecommitdiff
path: root/pylint/pyreverse/vcg_printer.py
diff options
context:
space:
mode:
authorDaniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>2022-03-13 13:15:46 +0100
committerGitHub <noreply@github.com>2022-03-13 13:15:46 +0100
commit663a2be7abd407fc680f426155ba26becaaa278d (patch)
treefe0b64a75fe24093b6f26018d82e5b5477a13d3c /pylint/pyreverse/vcg_printer.py
parent7981ec021b84c6f2b216202c1c028da4b0ee995b (diff)
downloadpylint-git-663a2be7abd407fc680f426155ba26becaaa278d.tar.gz
Upgrade ``pydocstringformatter`` to ``0.5.0`` (#5910)
Diffstat (limited to 'pylint/pyreverse/vcg_printer.py')
-rw-r--r--pylint/pyreverse/vcg_printer.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/pylint/pyreverse/vcg_printer.py b/pylint/pyreverse/vcg_printer.py
index f7e2a4665..52e99a300 100644
--- a/pylint/pyreverse/vcg_printer.py
+++ b/pylint/pyreverse/vcg_printer.py
@@ -15,6 +15,7 @@
"""Functions to generate files readable with Georg Sander's vcg
(Visualization of Compiler Graphs).
+
You can download vcg at https://rw4.cs.uni-sb.de/~sander/html/gshome.html
Note that vcg exists as a debian package.
See vcg's documentation for explanation about the different values that
@@ -212,7 +213,10 @@ class VCGPrinter(Printer):
type_: NodeType,
properties: Optional[NodeProperties] = None,
) -> None:
- """Create a new node. Nodes can be classes, packages, participants etc."""
+ """Create a new node.
+
+ Nodes can be classes, packages, participants etc.
+ """
if properties is None:
properties = NodeProperties(label=name)
elif properties.label is None: