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 a06de16 commit cb22826Copy full SHA for cb22826
plotly/express/_doc.py
@@ -612,7 +612,12 @@
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(
616
+ width=75,
617
+ initial_indent=" ",
618
+ subsequent_indent=" ",
619
+ break_on_hyphens=False,
620
+ )
621
result = (fn.__doc__ or "") + "\nParameters\n----------\n"
622
for param in getfullargspec(fn)[0]:
623
if override_dict.get(param):
0 commit comments