summaryrefslogtreecommitdiff
path: root/tests/functional/r/redefined/redefined_slots.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functional/r/redefined/redefined_slots.py')
-rw-r--r--tests/functional/r/redefined/redefined_slots.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/r/redefined/redefined_slots.py b/tests/functional/r/redefined/redefined_slots.py
index 28f05fbfd..fbeda46e1 100644
--- a/tests/functional/r/redefined/redefined_slots.py
+++ b/tests/functional/r/redefined/redefined_slots.py
@@ -33,7 +33,7 @@ class Subclass3(Base, Base2):
__slots__ = ("a", "b", "c", "i", "j", "k", "l", "m", "n") # [redefined-slots-in-subclass]
-# https://github.com/PyCQA/pylint/issues/6100
+# https://github.com/pylint-dev/pylint/issues/6100
class MyClass:
"""No crash when the type of the slot is not a Const or a str"""
__slots__ = [str]