I have a simple attrs data class:
from attrs import frozen
@frozen
class Person
raw: str
I document it with the simplest *.rst
file:
.. autoclass:: api.main.person.Person
:members:
:exclude-members: __init__
but if I need to remove __eq__
, __hash__
etc. as well, Is there a better way?