You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For a function that returns multiple objects, parsing a numpy-style doctring with nbdev.showdoc (and nbdev_preview in the command window) only shows the first returned object. Example:
def f(x):
"""
foo
Parameters
----------
x : int
Returns
-------
a : int
b : str
"""
return a, b
This gives a docstring that only mentions "a" and not "b".
The text was updated successfully, but these errors were encountered:
For a function that returns multiple objects, parsing a numpy-style doctring with nbdev.showdoc (and nbdev_preview in the command window) only shows the first returned object. Example:
This gives a docstring that only mentions "a" and not "b".
The text was updated successfully, but these errors were encountered: