Simplify spinner_pos calculation a little (#1111)

This commit is contained in:
Anton Emelyanov 2021-07-20 19:24:49 +03:00 committed by GitHub
parent 64c31d554a
commit aee77a23af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -451,9 +451,7 @@ class ProgressReporterThread(threading.Thread):
)
self.output.flush()
self._spinner_pos = (self._spinner_pos + 1
if self._spinner_pos + 1 != len(SPINNER)
else 0)
self._spinner_pos = (self._spinner_pos + 1) % len(SPINNER)
def sum_up(self):
actually_downloaded = (