summaryrefslogtreecommitdiff
path: root/pylint/config/option_parser.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/config/option_parser.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/config/option_parser.py')
-rw-r--r--pylint/config/option_parser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/config/option_parser.py b/pylint/config/option_parser.py
index bbed68036..b58fad3a4 100644
--- a/pylint/config/option_parser.py
+++ b/pylint/config/option_parser.py
@@ -19,7 +19,7 @@ def _level_options(group, outputlevel):
class OptionParser(optparse.OptionParser):
def __init__(self, option_class, *args, **kwargs):
- # TODO: 3.0: Remove deprecated class # pylint: disable=fixme
+ # TODO: 3.0: Remove deprecated class
warnings.warn(
"OptionParser has been deprecated and will be removed in pylint 3.0",
DeprecationWarning,