Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4767ef2

Browse files
committed
Update _doc.py
1 parent d475445 commit 4767ef2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plotly/express/_doc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,7 @@
612612
def make_docstring(fn, override_dict=None, append_dict=None):
613613
override_dict = {} if override_dict is None else override_dict
614614
append_dict = {} if append_dict is None else append_dict
615-
tw = TextWrapper(width=75, initial_indent=" ", subsequent_indent=" ")
615+
tw = TextWrapper(width=75, initial_indent=" ", subsequent_indent=" ", break_on_hyphens=False)
616616
result = (fn.__doc__ or "") + "\nParameters\n----------\n"
617617
for param in getfullargspec(fn)[0]:
618618
if override_dict.get(param):

0 commit comments

Comments
 (0)