Took into account pylint undefined-loop-variable warnings

This commit is contained in:
Dmitri Bogomolov 2019-04-25 14:24:30 +03:00
parent 0c1e516921
commit a5300e8584
Signed by untrusted user: g1itch
GPG Key ID: 720A756F18DEED13
1 changed files with 4 additions and 1 deletions

View File

@ -1801,6 +1801,7 @@ class MyForm(settingsmixin.SMainWindow):
self.ui.tableWidgetInboxSubscriptions,
self.ui.tableWidgetInboxChans
):
i = None
for i in range(inbox.rowCount()):
if msgid == \
inbox.item(i, 3).data(QtCore.Qt.UserRole).toPyObject():
@ -1813,7 +1814,8 @@ class MyForm(settingsmixin.SMainWindow):
# wrong assumption about current folder here:
self.getCurrentFolder(treeWidget), treeWidget
)
inbox.removeRow(i)
if i:
inbox.removeRow(i)
def newVersionAvailable(self, version):
self.notifiedNewVersion = ".".join(str(n) for n in version)
@ -2311,6 +2313,7 @@ class MyForm(settingsmixin.SMainWindow):
acct.parseMessage(toAddress, fromAddress, subject, "")
else:
acct = ret
# pylint:disable=undefined-loop-variable
self.propagateUnreadCount(widget=treeWidget if ret else None)
if BMConfigParser().getboolean(
'bitmessagesettings', 'showtraynotifications'):