We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
is
1 parent 999f5ed commit 9ddff4fCopy full SHA for 9ddff4f
cli2gui/application/application.py
@@ -36,9 +36,9 @@ def run(buildSpec: types.FullBuildSpec) -> None:
36
else:
37
gui_wrapper = DearPyGuiWrapper
38
39
- if isinstance(gui_wrapper, PySimpleGUIWrapper):
+ if gui_wrapper is PySimpleGUIWrapper:
40
gui = gui_wrapper(theme, buildSpec["gui"])
41
- elif isinstance(gui_wrapper, DearPyGuiWrapper):
+ elif gui_wrapper is DearPyGuiWrapper:
42
gui = gui_wrapper(theme)
43
44
def quit_callback() -> None:
0 commit comments