Changed humanize_megabytes

This commit is contained in:
Julio-Oliveira-Encora 2024-05-23 16:08:35 -03:00
parent fab2a612ac
commit ee7ec9bfb3

View File

@ -106,8 +106,6 @@ def humanize_megabytes(mb):
if not mb:
return ""
print(factors['mega'])
bytes = int(mb * 1024**2)
if bytes >= factors["tera"]: