Browse Source

bug fix: missing string fallback in layout docs

pull/731/head
Chris 3 years ago
parent
commit
2ba120a72f
1 changed files with 1 additions and 1 deletions
  1. 2
      gooey/gui/components/options/options.py

2
gooey/gui/components/options/options.py

@ -7,7 +7,7 @@ def _include_layout_docs(f):
Combines the layout_options docsstring with the
wrapped function's doc string.
"""
f.__doc__ = (f.__doc__ or '') + LayoutOptions.__doc__
f.__doc__ = (f.__doc__ or '') + (LayoutOptions.__doc__ or '')
return f

Loading…
Cancel
Save