This commit is contained in:
Roberto Alsina 2020-02-03 10:14:56 -03:00
parent 58c385f383
commit e0384672dd
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
from .main import main
from .main import main # noqa: F401

View File

@ -409,7 +409,7 @@ def main():
ui_file.open(QFile.ReadOnly)
loader = QUiLoader()
window = Window(loader.load(ui_file))
Window(loader.load(ui_file))
sys.exit(app.exec_())