Why Does Sphinx Format My Docstring Parameters On The Same Line
I am relatively new to sphinx and wanted to generate documentation for a project of mine. An example of one of my functions is found within predict.py: def arima_rolling_forecast(t
Solution 1:
You need to add a blank line between the description and the first :param blah blah:
. See syntax for Info field lists.
I'm unsure whether pandas data types are supported. You'll need to do your own research to make that determination.
Post a Comment for "Why Does Sphinx Format My Docstring Parameters On The Same Line"