We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90359b0 commit 457c083Copy full SHA for 457c083
packages/python/plotly/plotly/express/_doc.py
@@ -405,7 +405,7 @@
405
406
407
def make_docstring(fn):
408
- result = (fn.__doc__ or "") + "\nArguments:\n"
+ result = (fn.__doc__ or "") + "\nParameters\n----------\n"
409
for arg in inspect.getargspec(fn)[0]:
410
d = (
411
" ".join(docs[arg] or "")
@@ -414,5 +414,6 @@ def make_docstring(fn):
414
)
415
result += " %s: %s\n" % (arg, d)
416
result += "Returns:\n"
417
+ result += "\nReturns\n-------\n"
418
result += " A `Figure` object."
419
return result
0 commit comments