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 06145d2 commit 70fc85dCopy full SHA for 70fc85d
src/humanize/filesize.py
@@ -77,4 +77,5 @@ def naturalsize(
77
if abs_bytes < unit:
78
break
79
80
- return format % (base * bytes_ / unit) + s
+ ret: str = format % (base * bytes_ / unit) + s
81
+ return ret
0 commit comments