@@ -80,7 +80,6 @@ def __init__(
8080 self ._option_dicts : dict [str , OptionDict ] = {}
8181 """All option dictionaries that have been registered."""
8282
83- # pylint: disable=fixme
8483 # TODO: 3.0: Remove deprecated attributes introduced to keep API
8584 # parity with optparse. Until '_maxlevel'
8685 with warnings .catch_warnings ():
@@ -107,7 +106,7 @@ def config(self, value: argparse.Namespace) -> None:
107106
108107 @property
109108 def options_providers (self ) -> list [ConfigProvider ]:
110- # TODO: 3.0: Remove deprecated attribute. # pylint: disable=fixme
109+ # TODO: 3.0: Remove deprecated attribute.
111110 warnings .warn (
112111 "options_providers has been deprecated. It will be removed in pylint 3.0." ,
113112 DeprecationWarning ,
@@ -629,7 +628,7 @@ def help(self, level: int | None = None) -> str:
629628
630629 def cb_set_provider_option (self , option , opt , value , parser ): # pragma: no cover
631630 """DEPRECATED: Optik callback for option setting."""
632- # TODO: 3.0: Remove deprecated method. # pylint: disable=fixme
631+ # TODO: 3.0: Remove deprecated method.
633632 warnings .warn (
634633 "cb_set_provider_option has been deprecated. It will be removed in pylint 3.0." ,
635634 DeprecationWarning ,
@@ -647,7 +646,7 @@ def cb_set_provider_option(self, option, opt, value, parser): # pragma: no cove
647646
648647 def global_set_option (self , opt : str , value : Any ) -> None : # pragma: no cover
649648 """DEPRECATED: Set option on the correct option provider."""
650- # TODO: 3.0: Remove deprecated method. # pylint: disable=fixme
649+ # TODO: 3.0: Remove deprecated method.
651650 warnings .warn (
652651 "global_set_option has been deprecated. You can use _arguments_manager.set_option "
653652 "or linter.set_option to set options on the global configuration object." ,
@@ -734,7 +733,7 @@ def set_option(
734733 optdict : None | str | OptionDict = "default_value" ,
735734 ) -> None :
736735 """Set an option on the namespace object."""
737- # TODO: 3.0: Remove deprecated arguments. # pylint: disable=fixme
736+ # TODO: 3.0: Remove deprecated arguments.
738737 if action != "default_value" :
739738 warnings .warn (
740739 "The 'action' argument has been deprecated. You can use set_option "
0 commit comments