summaryrefslogtreecommitdiff
path: root/pylint/pyreverse
diff options
context:
space:
mode:
authorDaniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>2022-05-23 15:36:55 +0200
committerGitHub <noreply@github.com>2022-05-23 15:36:55 +0200
commitb4f5c4482e37045d75188bc3087196a70cdbe575 (patch)
tree7f40ea54768d6725735ccc6155baeffd387a59f0 /pylint/pyreverse
parentff510c8d953e67bf57a2f49914257974a6d45712 (diff)
downloadpylint-git-b4f5c4482e37045d75188bc3087196a70cdbe575.tar.gz
Some initial line wrapping of docstrings (#6672)
Diffstat (limited to 'pylint/pyreverse')
-rw-r--r--pylint/pyreverse/printer.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/pylint/pyreverse/printer.py b/pylint/pyreverse/printer.py
index f1df4595c..55ce2c8b1 100644
--- a/pylint/pyreverse/printer.py
+++ b/pylint/pyreverse/printer.py
@@ -69,7 +69,9 @@ class Printer(ABC):
@abstractmethod
def _open_graph(self) -> None:
- """Emit the header lines, i.e. all boilerplate code that defines things like layout etc."""
+ """Emit the header lines, i.e. all boilerplate code that defines things like
+ layout etc.
+ """
def emit(self, line: str, force_newline: bool | None = True) -> None:
if force_newline and not line.endswith("\n"):