Skip to content

Commit 9597ecd

Browse files
committed
Fix _TupleProxy docstring
1 parent 64e8291 commit 9597ecd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/attr/_make.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,13 +104,13 @@ def __reduce__(self, _none_constructor=type(None), _args=()): # noqa: B008
104104

105105

106106
class _TupleProxy(Sequence):
107-
__slots__ = ("_tup",)
108107
"""A wrapper for a tuple that makes it not type-check as a tuple
109108
110109
This is a hack to make Sphinx document all cached properties on slots
111110
classes as if they were regular properties.
112111
113112
"""
113+
__slots__ = ("_tup",)
114114

115115
def __init__(self, tup: tuple):
116116
self._tup = tup

0 commit comments

Comments
 (0)