summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMelvin <31448155+melvio@users.noreply.github.com>2021-08-28 20:12:38 +0200
committerGitHub <noreply@github.com>2021-08-28 20:12:38 +0200
commit1a19421058dcc04446f8b91a825ed1078959d87a (patch)
tree32a8d14e3b4b0c39fe1a84080e1c029b7cf3e162
parenteeb4156e4a27883bf7447726e764f8f404062e67 (diff)
downloadpylint-git-1a19421058dcc04446f8b91a825ed1078959d87a.tar.gz
Upgrade ignored-parents help description (#4926)
* Upgrade ignored-parents help description
-rw-r--r--CONTRIBUTORS.txt2
-rw-r--r--pylint/checkers/design_analysis.py2
2 files changed, 3 insertions, 1 deletions
diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt
index ab067a060..e7e73136f 100644
--- a/CONTRIBUTORS.txt
+++ b/CONTRIBUTORS.txt
@@ -537,3 +537,5 @@ contributors:
* Sam Vermeiren (PaaEl): contributor
* Phil A. (flying-sheep): contributor
+
+* Melvin Hazeleger (melvio): contributor
diff --git a/pylint/checkers/design_analysis.py b/pylint/checkers/design_analysis.py
index de4099d4c..dbc132be4 100644
--- a/pylint/checkers/design_analysis.py
+++ b/pylint/checkers/design_analysis.py
@@ -344,7 +344,7 @@ class MisdesignChecker(BaseChecker):
"default": (),
"type": "csv",
"metavar": "<comma separated list of class names>",
- "help": "List of qualified class names to ignore when countint class parents (see R0901)",
+ "help": "List of qualified class names to ignore when counting class parents (see R0901)",
},
),
(