统一大小的显示方式

This commit is contained in:
x1ao4 2025-06-20 02:11:50 +08:00
parent e0b60a48d8
commit ed746ef364

View File

@ -3238,7 +3238,7 @@ def format_bytes(size_bytes: int) -> str:
while size_bytes >= 1024 and i < len(units) - 1:
size_bytes /= 1024
i += 1
return f"{size_bytes:.2f}{units[i]}"
return f"{size_bytes:.2f} {units[i]}"
def do_sign(account):