summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2021-12-14 08:31:23 +0100
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-12-14 12:16:28 +0100
commit01fa4df457309f8a7249d791a84084b4ae3f0fd4 (patch)
tree89e52c2f0d5d20606a53ff9408fe948e5706c721
parent86c3709572a90911b5cb7a7347f3a08c94710ba8 (diff)
downloadpylint-git-01fa4df457309f8a7249d791a84084b4ae3f0fd4.tar.gz
Modify the description of HIGH confidence for accuracy
-rw-r--r--pylint/interfaces.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/interfaces.py b/pylint/interfaces.py
index 0ef8cbb62..eef47449c 100644
--- a/pylint/interfaces.py
+++ b/pylint/interfaces.py
@@ -42,7 +42,7 @@ __all__ = (
Confidence = namedtuple("Confidence", ["name", "description"])
# Warning Certainties
-HIGH = Confidence("HIGH", "No false positive possible.")
+HIGH = Confidence("HIGH", "Warning that is not based on inference result.")
INFERENCE = Confidence("INFERENCE", "Warning based on inference result.")
INFERENCE_FAILURE = Confidence(
"INFERENCE_FAILURE", "Warning based on inference with failures."