When documenting Python code using Sphinx (v8.2.3), the parameters of the class' initializer __init__(self, ...) are documented two times:
- in the class' description
- in the dunder init method
I consider this redundant information, especially as __init__() is the first method in the class and the information is repeated within a few centimeters on screen.
Question:
How can I disable the parameter documentation in the class description?

:class-doc-from:andautoclass_content? For me adjusting the later is generally enough - commonly users choose one or the other (merge the__init__signature into the class or document it separately like a method).