Skip to content

Commit 70fc85d

Browse files
committed
Appease mypy --strict
1 parent 06145d2 commit 70fc85d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/humanize/filesize.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,5 @@ def naturalsize(
7777
if abs_bytes < unit:
7878
break
7979

80-
return format % (base * bytes_ / unit) + s
80+
ret: str = format % (base * bytes_ / unit) + s
81+
return ret

0 commit comments

Comments
 (0)