summaryrefslogtreecommitdiff
path: root/pylint/checkers/imports.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/checkers/imports.py')
-rw-r--r--pylint/checkers/imports.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pylint/checkers/imports.py b/pylint/checkers/imports.py
index 3e0b39d26..65080af15 100644
--- a/pylint/checkers/imports.py
+++ b/pylint/checkers/imports.py
@@ -405,7 +405,7 @@ class ImportsChecker(DeprecatedMixin, BaseChecker):
{
"default": False,
"type": "yn",
- "metavar": "<y_or_n>",
+ "metavar": "<y or n>",
"help": "Analyse import fallback blocks. This can be used to "
"support both Python 2 and 3 compatible code, which "
"means that the block might have code that exists "
@@ -418,7 +418,7 @@ class ImportsChecker(DeprecatedMixin, BaseChecker):
{
"default": False,
"type": "yn",
- "metavar": "<y_or_n>",
+ "metavar": "<y or n>",
"help": "Allow wildcard imports from modules that define __all__.",
},
),