Skip to content

Commit a79dafa

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 76c779e commit a79dafa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/humanize/filesize.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,5 +95,5 @@ def naturalsize(
9595
return f"{int(bytes_)}B" if gnu else f"{int(bytes_)} Bytes"
9696

9797
exp = int(min(log(abs_bytes, base), len(suffix)))
98-
ret: str = format % (bytes_ / (base ** exp)) + suffix[exp - 1]
98+
ret: str = format % (bytes_ / (base**exp)) + suffix[exp - 1]
9999
return ret

0 commit comments

Comments
 (0)