summaryrefslogtreecommitdiff
path: root/pylint/reporters
diff options
context:
space:
mode:
authorJacob Walls <jacobtylerwalls@gmail.com>2022-03-07 18:42:22 -0500
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2022-03-10 16:38:42 +0100
commitc01758eebcc2e15c0fc9b95095230f07a0ac8a02 (patch)
tree8da226fec67721d7363c69f3708fb48b97488a67 /pylint/reporters
parent51d414dc472e0d977c7a60b37801e22be8611f23 (diff)
downloadpylint-git-c01758eebcc2e15c0fc9b95095230f07a0ac8a02.tar.gz
Fix typo in ColorizedTextReporter deprecation warning
Diffstat (limited to 'pylint/reporters')
-rw-r--r--pylint/reporters/text.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/reporters/text.py b/pylint/reporters/text.py
index 6743ab5b1..2e1abf6bf 100644
--- a/pylint/reporters/text.py
+++ b/pylint/reporters/text.py
@@ -303,7 +303,7 @@ class ColorizedTextReporter(TextReporter):
list(color_mapping.values())[0], MessageStyle
):
warnings.warn(
- "In pylint 3.0, the ColoreziedTextReporter will only accept ColorMappingDict as color_mapping parameter",
+ "In pylint 3.0, the ColorizedTextReporter will only accept ColorMappingDict as color_mapping parameter",
DeprecationWarning,
)
temp_color_mapping: ColorMappingDict = {}