From 67576c2bf58650c636e2d6b7e3337adf819d68d5 Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Wed, 28 Apr 2021 12:10:32 +0200 Subject: [PATCH] removed unused InstallResult --- igniter/install_dialog.py | 2 +- igniter/install_thread.py | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/igniter/install_dialog.py b/igniter/install_dialog.py index 34cf4d0a01..8d9f195f8f 100644 --- a/igniter/install_dialog.py +++ b/igniter/install_dialog.py @@ -8,7 +8,7 @@ from Qt import QtCore, QtGui, QtWidgets # noqa from Qt.QtGui import QValidator # noqa from Qt.QtCore import QTimer # noqa -from .install_thread import InstallThread, InstallResult +from .install_thread import InstallThread from .tools import ( validate_mongo_connection, get_openpype_path_from_db diff --git a/igniter/install_thread.py b/igniter/install_thread.py index 82432232da..98a706cf16 100644 --- a/igniter/install_thread.py +++ b/igniter/install_thread.py @@ -17,12 +17,6 @@ from .bootstrap_repos import ( from .tools import validate_mongo_connection -class InstallResult(QObject): - """Used to pass results back.""" - def __init__(self, value): - self.status = value - - class InstallThread(QThread): """Install Worker thread.