Skip to content

Commit 06b5900

Browse files
committed
Fix rebase fubar
1 parent 750f088 commit 06b5900

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/attr/_make.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,6 @@ def attrib(
206206
207207
.. seealso:: `hashing`
208208
209-
.. seealso:: `init`
210-
211209
init (bool):
212210
Include this attribute in the generated ``__init__`` method. It is
213211
possible to set this to `False` and set a default value. In that
@@ -250,8 +248,7 @@ def attrib(
250248
Make this attribute keyword-only in the generated ``__init__`` (if
251249
``init`` is `False`, this parameter is ignored).
252250
253-
on_setattr (~typing.Callable | list[~typing.Callable] | None |
254-
typing.Literal[attrs.setters.NO_OP]):
251+
on_setattr (~typing.Callable | list[~typing.Callable] | None | typing.Literal[attrs.setters.NO_OP]):
255252
Allows to overwrite the *on_setattr* setting from `attr.s`. If left
256253
`None`, the *on_setattr* value from `attr.s` is used. Set to
257254
`attrs.setters.NO_OP` to run **no** `setattr` hooks for this

0 commit comments

Comments
 (0)