gui: update __init__ to use super() (bug 1836097) (#1319)

This commit is contained in:
Zeid Zabaneh 2023-06-01 10:56:23 -04:00 коммит произвёл GitHub
Родитель 08255e7cde
Коммит 30b1ce5bd9
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
5 изменённых файлов: 11 добавлений и 7 удалений

Просмотреть файл

@ -33,8 +33,12 @@ class GuiBisector(QObject, Bisector):
handle_merge = Signal(object, str, str, str)
def __init__(self, fetch_config, test_runner, download_manager, download_in_background=True):
QObject.__init__(self)
Bisector.__init__(self, fetch_config, test_runner, download_manager)
super().__init__(
fetch_config=fetch_config,
test_runner=test_runner,
download_manager=download_manager,
dl_in_background=download_in_background,
)
self.bisection = None
self.mid = None
self.build_infos = None

Просмотреть файл

@ -54,7 +54,7 @@ class GuiTestRunner(QObject):
evaluate_finished = Signal()
def __init__(self):
QObject.__init__(self)
super().__init__()
self.verdict = None
self.launcher = None
self.launcher_kwargs = {}
@ -97,7 +97,7 @@ class AbstractBuildRunner(QObject):
worker_class = None
def __init__(self, mainwindow):
QObject.__init__(self)
super().__init__()
self.mainwindow = mainwindow
self.thread = None
self.worker = None

Просмотреть файл

@ -22,7 +22,7 @@ class CheckReleaseThread(QThread):
class CheckRelease(QObject):
def __init__(self, mainwindow):
QObject.__init__(self, mainwindow)
super().__init__(mainwindow)
self.mainwindow = mainwindow
self.thread = CheckReleaseThread()
self.thread.finished.connect(self.on_release_found)

Просмотреть файл

@ -44,7 +44,7 @@ class CrashReporter(QObject):
got_exception = Signal(tuple)
def __init__(self, app):
QObject.__init__(self, app)
super().__init__(app)
self._sys_except_hook = sys.excepthook
self.app = app
self.allow_dialog = True

Просмотреть файл

@ -14,7 +14,7 @@ class SingleBuildWorker(QObject):
error = Signal(object)
def __init__(self, fetch_config, test_runner, download_manager):
QObject.__init__(self)
super().__init__()
self.fetch_config = fetch_config
self.test_runner = test_runner
self.download_manager = download_manager