Browse Source

Update options.py

comparing literal with is not
pull/662/head
DrStriky 3 years ago
committed by Chris
parent
commit
46e3986020
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