removed unused InstallResult

This commit is contained in:
iLLiCiTiT 2021-04-28 12:10:32 +02:00
parent 0e0215207a
commit 67576c2bf5
2 changed files with 1 additions and 7 deletions

View file

@ -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

View file

@ -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.