summaryrefslogtreecommitdiff
path: root/pylint/config/argument.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/config/argument.py')
-rw-r--r--pylint/config/argument.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/pylint/config/argument.py b/pylint/config/argument.py
index d826cbd3e..3bf990824 100644
--- a/pylint/config/argument.py
+++ b/pylint/config/argument.py
@@ -229,6 +229,7 @@ class _StoreArgument(_BaseStoreArgument):
https://docs.python.org/3/library/argparse.html#argparse.ArgumentParser.add_argument
"""
+ # pylint: disable-next=too-many-arguments
def __init__(
self,
*,
@@ -306,6 +307,7 @@ class _DeprecationArgument(_Argument):
https://docs.python.org/3/library/argparse.html#argparse.ArgumentParser.add_argument
"""
+ # pylint: disable-next=too-many-arguments
def __init__(
self,
*,
@@ -354,6 +356,7 @@ class _ExtendArgument(_DeprecationArgument):
https://docs.python.org/3/library/argparse.html#argparse.ArgumentParser.add_argument
"""
+ # pylint: disable-next=too-many-arguments
def __init__(
self,
*,
@@ -398,6 +401,7 @@ class _StoreOldNamesArgument(_DeprecationArgument):
https://docs.python.org/3/library/argparse.html#argparse.ArgumentParser.add_argument
"""
+ # pylint: disable-next=too-many-arguments
def __init__(
self,
*,
@@ -435,6 +439,7 @@ class _StoreNewNamesArgument(_DeprecationArgument):
https://docs.python.org/3/library/argparse.html#argparse.ArgumentParser.add_argument
"""
+ # pylint: disable-next=too-many-arguments
def __init__(
self,
*,