summaryrefslogtreecommitdiff
path: root/pylint/checkers/newstyle.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/checkers/newstyle.py
parent7981ec021b84c6f2b216202c1c028da4b0ee995b (diff)
downloadpylint-git-663a2be7abd407fc680f426155ba26becaaa278d.tar.gz
Upgrade ``pydocstringformatter`` to ``0.5.0`` (#5910)
Diffstat (limited to 'pylint/checkers/newstyle.py')
-rw-r--r--pylint/checkers/newstyle.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pylint/checkers/newstyle.py b/pylint/checkers/newstyle.py
index 00fa0748e..eb8473d09 100644
--- a/pylint/checkers/newstyle.py
+++ b/pylint/checkers/newstyle.py
@@ -45,7 +45,8 @@ MSGS = {
class NewStyleConflictChecker(BaseChecker):
"""Checks for usage of new style capabilities on old style classes and
- other new/old styles conflicts problems
+ other new/old styles conflicts problems.
+
* use of property, __slots__, super
* "super" usage
"""