summaryrefslogtreecommitdiff
path: root/tests/functional/u/used/used_before_assignment_type_annotations.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functional/u/used/used_before_assignment_type_annotations.py')
-rw-r--r--tests/functional/u/used/used_before_assignment_type_annotations.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/u/used/used_before_assignment_type_annotations.py b/tests/functional/u/used/used_before_assignment_type_annotations.py
index 1a03050c3..e70a911ca 100644
--- a/tests/functional/u/used/used_before_assignment_type_annotations.py
+++ b/tests/functional/u/used/used_before_assignment_type_annotations.py
@@ -77,7 +77,7 @@ def typing_and_value_assignment_with_tuple_assignment():
def nested_class_as_return_annotation():
"""A namedtuple as a class attribute is used as a return annotation
- Taken from https://github.com/PyCQA/pylint/issues/5568"""
+ Taken from https://github.com/pylint-dev/pylint/issues/5568"""
class MyObject:
"""namedtuple as class attribute"""
Coords = namedtuple('Point', ['x', 'y'])