summaryrefslogtreecommitdiff
path: root/pylint/reporters/text.py
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2022-05-01 19:56:15 +0200
committerGitHub <noreply@github.com>2022-05-01 19:56:15 +0200
commit76b853836801188667cf47f45b45493ef27d178c (patch)
treeb7e842c4b2b1aefde1740f5d77f3b4b77578f742 /pylint/reporters/text.py
parente1769bd44631374eab4f9176f51cc64a7051f316 (diff)
downloadpylint-git-76b853836801188667cf47f45b45493ef27d178c.tar.gz
Disable fixme for internal uses before we make it optional in #3512 (#6482)
Diffstat (limited to 'pylint/reporters/text.py')
-rw-r--r--pylint/reporters/text.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/pylint/reporters/text.py b/pylint/reporters/text.py
index c32ac0ecc..a60903e2e 100644
--- a/pylint/reporters/text.py
+++ b/pylint/reporters/text.py
@@ -130,7 +130,6 @@ def colorize_ansi(
:return: the ANSI escaped string
"""
- # pylint: disable-next=fixme
# TODO: 3.0: Remove deprecated typing and only accept MessageStyle as parameter
if not isinstance(msg_style, MessageStyle):
warnings.warn(
@@ -257,7 +256,6 @@ class ColorizedTextReporter(TextReporter):
) = None,
) -> None:
super().__init__(output)
- # pylint: disable-next=fixme
# TODO: 3.0: Remove deprecated typing and only accept ColorMappingDict as color_mapping parameter
if color_mapping and not isinstance(
list(color_mapping.values())[0], MessageStyle