summaryrefslogtreecommitdiff
path: root/pylint
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2022-07-30 10:53:53 +0200
committerGitHub <noreply@github.com>2022-07-30 10:53:53 +0200
commit4117389b991ad814588a8d11c53a5f99b14c6b42 (patch)
tree5e4bccee0d8fa90fbb283287fe3e6e484661428f /pylint
parent36a6723ce6b15e8a466a300b6594d6828305fd67 (diff)
downloadpylint-git-4117389b991ad814588a8d11c53a5f99b14c6b42.tar.gz
[doc] Remove hard-coded default in 'ignored-argument-names' description (#7239)
Diffstat (limited to 'pylint')
-rw-r--r--pylint/checkers/variables.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/pylint/checkers/variables.py b/pylint/checkers/variables.py
index 9ec921200..0cdd37c5e 100644
--- a/pylint/checkers/variables.py
+++ b/pylint/checkers/variables.py
@@ -1056,8 +1056,7 @@ class VariablesChecker(BaseChecker):
"default": IGNORED_ARGUMENT_NAMES,
"type": "regexp",
"metavar": "<regexp>",
- "help": "Argument names that match this expression will be "
- "ignored. Default to name with leading underscore.",
+ "help": "Argument names that match this expression will be ignored.",
},
),
(