Class API docs is wrong
Right now, arguments for a class are declared for its constructor (__init__
), thus they do not appear at the top of the class docs .
Currently :
Scroll down...
To fix this, init arguments must be declared in class docstrings.
More generally, we can avoid arguments specs for the API docs when talking about private functions. Class init being an exception, but we now have to move this to the class docstring.
This is a work in progress in !101 (merged)
Edited by Vincent Delbar