Fixed pylint CQ issue for bitmessageqt.__init__ module

This commit is contained in:
navjot 2020-12-25 13:09:51 +05:30
parent cbe7756bb9
commit 9c66f78446
No known key found for this signature in database
GPG Key ID: 9EE70AFD71357F1C
1 changed files with 3 additions and 9 deletions

View File

@ -832,6 +832,9 @@ class MyForm(settingsmixin.SMainWindow):
'bitmessagesettings', 'dontconnect')
self._contact_selected = None
self.progress = QtGui.QProgressBar(self)
self.progress.setGeometry(550, 555, 250, 20)
self.progress.hide()
def getContactSelected(self):
"""Returns last selected contact once"""
@ -2635,9 +2638,6 @@ class MyForm(settingsmixin.SMainWindow):
# C PoW currently doesn't support interrupting and OpenCL is untested
if getPowType() == "python" and (powQueueSize() > 0 or pendingUpload() > 0):
self.progress = QtGui.QProgressBar(self)
self.progress.setGeometry(550, 555, 250, 20)
# self.progress.show()
messagebox = QtGui.QMessageBox(
QtGui.QMessageBox.Question,
_translate("MainWindow", "Proof of work pending"),
@ -2668,9 +2668,6 @@ class MyForm(settingsmixin.SMainWindow):
return
if pendingDownload() > 0:
self.progress = QtGui.QProgressBar(self)
self.progress.setGeometry(550, 555, 250, 20)
# self.progress.show()
messagebox = QtGui.QMessageBox(
QtGui.QMessageBox.Question,
_translate("MainWindow", "Synchronisation pending"),
@ -2698,9 +2695,6 @@ class MyForm(settingsmixin.SMainWindow):
if state.statusIconColor == 'red' and not BMConfigParser().safeGetBoolean(
'bitmessagesettings', 'dontconnect'):
self.progress = QtGui.QProgressBar(self)
self.progress.setGeometry(550, 555, 250, 20)
# self.progress.show()
messagebox = QtGui.QMessageBox(
QtGui.QMessageBox.Question,
_translate("MainWindow", "Not connected"),