diff --git a/pylint/checkers/nested_min_max.py b/pylint/checkers/nested_min_max.py index ccee2e68ef..c8231fe7d2 100644 --- a/pylint/checkers/nested_min_max.py +++ b/pylint/checkers/nested_min_max.py @@ -67,7 +67,7 @@ def get_redundant_calls(cls, node: nodes.Call) -> list[nodes.Call]: and arg.func.name == node.func.name # Nesting is useful for finding the maximum in a matrix. # Allow: max(max([[1, 2, 3], [4, 5, 6]])) - # Meaning, redunant call only if parent max call has more than 1 arg. + # Meaning, redundant call only if parent max call has more than 1 arg. and len(arg.parent.args) > 1 ) ]