summaryrefslogtreecommitdiff
path: root/pylint/extensions/mccabe.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/extensions/mccabe.py')
-rw-r--r--pylint/extensions/mccabe.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/extensions/mccabe.py b/pylint/extensions/mccabe.py
index 70ad5a553..f9db6247d 100644
--- a/pylint/extensions/mccabe.py
+++ b/pylint/extensions/mccabe.py
@@ -175,7 +175,7 @@ class McCabeMethodChecker(checkers.BaseChecker):
@check_messages("too-complex")
def visit_module(self, node: nodes.Module) -> None:
"""visit an astroid.Module node to check too complex rating and
- add message if is greather than max_complexity stored from options"""
+ add message if is greater than max_complexity stored from options"""
visitor = PathGraphingAstVisitor()
for child in node.body:
visitor.preorder(child, visitor)