Skip to content

Commit

Permalink
newlines at the end, not the start
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcjohnson committed Apr 28, 2022
1 parent 1bed6e0 commit b43044d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions dash/development/_py_components_generation.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,10 @@ def __init__(self, {default_argtext}):
if len(default_arglist) > final_max_props:
default_arglist = default_arglist[:final_max_props]
docstring += (
"\n\nNote: due to the large number of props for this component,"
"\nnot all of them appear in the constructor signature, but"
"\nthey may still be used as keyword arguments."
"\n\n"
"Note: due to the large number of props for this component,\n"
"not all of them appear in the constructor signature, but\n"
"they may still be used as keyword arguments."
)

default_argtext += ", ".join(default_arglist + ["**kwargs"])
Expand Down

0 comments on commit b43044d

Please sign in to comment.