From 2ba120a72ffd86bf1e0d7a9e3b5a925b43695bd4 Mon Sep 17 00:00:00 2001 From: Chris Date: Thu, 15 Jul 2021 19:03:52 -0700 Subject: [PATCH] bug fix: missing string fallback in layout docs --- gooey/gui/components/options/options.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gooey/gui/components/options/options.py b/gooey/gui/components/options/options.py index b994454..02b3047 100644 --- a/gooey/gui/components/options/options.py +++ b/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