From f1f4f2afd243958c4e766de89d92ebb6dd66fac4 Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Wed, 28 Apr 2021 16:01:47 +0200 Subject: [PATCH] added minimalistic docstring to install thread --- igniter/install_thread.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/igniter/install_thread.py b/igniter/install_thread.py index 98a706cf16..8505e9b4ba 100644 --- a/igniter/install_thread.py +++ b/igniter/install_thread.py @@ -36,9 +36,11 @@ class InstallThread(QThread): self._mongo = None self._path = None self._result = None + QThread.__init__(self, parent) def result(self): + """Result of finished installation.""" return self._result def _set_result(self, value):