Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'examples/installer_test')
-rw-r--r--examples/installer_test/hello.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/installer_test/hello.py b/examples/installer_test/hello.py
index 94d82d4ab..775fe1532 100644
--- a/examples/installer_test/hello.py
+++ b/examples/installer_test/hello.py
@@ -62,8 +62,7 @@ from PySide6.QtWidgets import (QApplication, QLabel, QPushButton,
from PySide6.QtCore import Slot, Qt, QTimer
is_compiled = "__compiled__" in globals() # Nuitka
-uses_embedding = sys.pyside_uses_embedding # PyInstaller
-auto_quit = "Nuitka" if is_compiled else "PyInst" if uses_embedding else False
+auto_quit = "Nuitka" if is_compiled else "PyInst"
class MyWidget(QWidget):