Skip to content
Snippets Groups Projects
Commit c0228af4 authored by Philipp Hörist's avatar Philipp Hörist
Browse files

HTTPUploadProgress: Fix pylint errors

parent fe122aab
No related branches found
No related tags found
No related merge requests found
......@@ -80,7 +80,7 @@ def _pulse_progressbar(self):
self._ui.progressbar.pulse()
return True
def _on_cancel_upload_button_clicked(self, widget):
def _on_cancel_upload_button_clicked(self, _widget):
self.destroy()
def _on_destroy(self, *args):
......@@ -117,7 +117,8 @@ def _update_progress(self, seen, total):
self._ui.eta_label.set_text(eta)
self._ui.progressbar.set_fraction(float(seen) / total)
def _format_eta(self, time_):
@staticmethod
def _format_eta(time_):
times = {'minutes': 0, 'seconds': 0}
time_ = int(time_)
times['seconds'] = time_ % 60
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment