Browse Source

Update options.py

comparing literal with is not
1.0.8-release
DrStriky 4 years ago
committed by Chris
parent
commit
f4ba4f1750
1 changed files with 1 additions and 1 deletions
  1. 2
      gooey/gui/components/options/options.py

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

@ -329,6 +329,6 @@ def ArgumentGroup(show_border=False,
def _clean(options):
cleaned = {k: v for k, v in options.items()
if v is not None and k is not "layout_options"}
if v is not None and k != "layout_options"}
return {**options.get('layout_options', {}), **cleaned}
Loading…
Cancel
Save