1
0
mirror of https://github.com/httpie/cli.git synced 2025-08-10 22:42:05 +02:00

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

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 = (