summaryrefslogtreecommitdiff
path: root/pylint/extensions
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2022-07-05 22:45:32 +0300
committerGitHub <noreply@github.com>2022-07-05 21:45:32 +0200
commit7953fd6a6d541b79d0142e26a1ea7d739d59c1bf (patch)
treeddf5bccf99c87866fa9d1438259e7cbc81bd44ab /pylint/extensions
parent1c5777f37f227f927549abcb0fcf846ea60ca682 (diff)
downloadpylint-git-7953fd6a6d541b79d0142e26a1ea7d739d59c1bf.tar.gz
[empty-comment] fix checker name in code and docs (#6996)
Diffstat (limited to 'pylint/extensions')
-rw-r--r--pylint/extensions/empty_comment.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/extensions/empty_comment.py b/pylint/extensions/empty_comment.py
index 5b60900c0..8685cb7e9 100644
--- a/pylint/extensions/empty_comment.py
+++ b/pylint/extensions/empty_comment.py
@@ -41,7 +41,7 @@ def comment_part_of_string(line: bytes, comment_idx: int) -> bool:
class CommentChecker(BaseRawFileChecker):
- name = "refactoring"
+ name = "empty-comment"
msgs = {
"R2044": (
"Line with empty comment",