summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>2022-01-10 22:20:49 +0000
committerpre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>2022-01-10 22:20:50 +0000
commit5d8698051b0b783c5bcdeb3f893c91e13eaf85de (patch)
tree5b5b66e162bdee2d84ad0c361a2c9a716163cecb
parent60916f9a861610a72606e54f33d86ed408b92868 (diff)
downloadpylint-git-add-docstring-formatter-in-pre-commit.tar.gz
[pre-commit.ci] auto fixes from pre-commit.com hooksadd-docstring-formatter-in-pre-commit
for more information, see https://pre-commit.ci
-rw-r--r--pylint/checkers/non_ascii_names.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/checkers/non_ascii_names.py b/pylint/checkers/non_ascii_names.py
index 6ad0df556..dc1c30f3f 100644
--- a/pylint/checkers/non_ascii_names.py
+++ b/pylint/checkers/non_ascii_names.py
@@ -147,7 +147,7 @@ class NonAsciiNameChecker(base_checker.BaseChecker):
@utils.check_messages("non-ascii-name")
def visit_assignname(self, node: nodes.AssignName) -> None:
- """check module level assigned names"""
+ """Check module level assigned names"""
# The NameChecker from which this Checker originates knows a lot of different
# versions of variables, i.e. constants, inline variables etc.
# To simplify we use only `variable` here, as we don't need to apply different