summaryrefslogtreecommitdiff
path: root/pylint/reporters
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/reporters
parent7981ec021b84c6f2b216202c1c028da4b0ee995b (diff)
downloadpylint-git-663a2be7abd407fc680f426155ba26becaaa278d.tar.gz
Upgrade ``pydocstringformatter`` to ``0.5.0`` (#5910)
Diffstat (limited to 'pylint/reporters')
-rw-r--r--pylint/reporters/multi_reporter.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/pylint/reporters/multi_reporter.py b/pylint/reporters/multi_reporter.py
index a68c8c423..c2c7382d2 100644
--- a/pylint/reporters/multi_reporter.py
+++ b/pylint/reporters/multi_reporter.py
@@ -49,9 +49,10 @@ class MultiReporter:
@out.setter
def out(self, output: Optional[AnyFile] = None):
- """MultiReporter doesn't have its own output. This method is only
- provided for API parity with BaseReporter and should not be called
- with non-None values for 'output'.
+ """MultiReporter doesn't have its own output.
+
+ This method is only provided for API parity with BaseReporter
+ and should not be called with non-None values for 'output'.
"""
self.__out = None
if output is not None: