summaryrefslogtreecommitdiff
path: root/tests/functional/u/undefined/undefined_loop_variable_py38.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functional/u/undefined/undefined_loop_variable_py38.py')
-rw-r--r--tests/functional/u/undefined/undefined_loop_variable_py38.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/u/undefined/undefined_loop_variable_py38.py b/tests/functional/u/undefined/undefined_loop_variable_py38.py
index 5778df7d2..f9bd06f62 100644
--- a/tests/functional/u/undefined/undefined_loop_variable_py38.py
+++ b/tests/functional/u/undefined/undefined_loop_variable_py38.py
@@ -2,7 +2,7 @@
def walrus_in_comprehension_test(container):
- """https://github.com/PyCQA/pylint/issues/7222"""
+ """https://github.com/pylint-dev/pylint/issues/7222"""
for something in container:
print(something)
print([my_test for something in container if (my_test := something)])