From 01fa4df457309f8a7249d791a84084b4ae3f0fd4 Mon Sep 17 00:00:00 2001 From: Pierre Sassoulas Date: Tue, 14 Dec 2021 08:31:23 +0100 Subject: Modify the description of HIGH confidence for accuracy --- pylint/interfaces.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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." -- cgit v1.2.1