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 d475445 commit 4767ef2Copy full SHA for 4767ef2
plotly/express/_doc.py
@@ -612,7 +612,7 @@
612
def make_docstring(fn, override_dict=None, append_dict=None):
613
override_dict = {} if override_dict is None else override_dict
614
append_dict = {} if append_dict is None else append_dict
615
- tw = TextWrapper(width=75, initial_indent=" ", subsequent_indent=" ")
+ tw = TextWrapper(width=75, initial_indent=" ", subsequent_indent=" ", break_on_hyphens=False)
616
result = (fn.__doc__ or "") + "\nParameters\n----------\n"
617
for param in getfullargspec(fn)[0]:
618
if override_dict.get(param):
0 commit comments