Skip to content

Commit 1079e14

Browse files
authored
Add check for updates and follow PEP 8 Style
1 parent b3934ab commit 1079e14

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

main.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,8 @@ def on_clicked_button_refresh(self):
344344
self.pushButtonRefresh.setEnabled(False)
345345

346346
self.timer = QtCore.QTimer()
347-
self.timer.timeout.connect(lambda: self.pushButtonRefresh.setEnabled(True))
347+
self.timer.timeout.connect(
348+
lambda: self.pushButtonRefresh.setEnabled(True))
348349
self.timer.start(30000)
349350

350351
self.tableWidget.setRowCount(0) # Remove all rows

0 commit comments

Comments
 (0)