We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8c6b5b commit d01e59dCopy full SHA for d01e59d
src/cleo/ui/progress_bar.py
@@ -401,7 +401,7 @@ def _formatter_max(self) -> int:
401
return self._max
402
403
def _formatter_percent(self) -> int:
404
- return int(math.floor(self._percent * 100))
+ return math.floor(self._percent * 100)
405
406
def _build_line(self) -> str:
407
regex = re.compile(r"(?i)%([a-z\-_]+)(?::([^%]+))?%")
0 commit comments