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?
Example: