summaryrefslogtreecommitdiff
path: root/tests/functional/ext/for_any_all/for_any_all.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functional/ext/for_any_all/for_any_all.py')
-rw-r--r--tests/functional/ext/for_any_all/for_any_all.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/ext/for_any_all/for_any_all.py b/tests/functional/ext/for_any_all/for_any_all.py
index 649739c37..fb09e491b 100644
--- a/tests/functional/ext/for_any_all/for_any_all.py
+++ b/tests/functional/ext/for_any_all/for_any_all.py
@@ -147,7 +147,7 @@ def is_from_decorator(node):
return False
def optimized_any_with_break(split_lines, max_chars):
- """False negative found in https://github.com/PyCQA/pylint/pull/7697"""
+ """False negative found in https://github.com/pylint-dev/pylint/pull/7697"""
potential_line_length_warning = False
for line in split_lines: # [consider-using-any-or-all]
if len(line) > max_chars: