Fix: indenting

This commit is contained in:
Aroy-Art 2024-10-20 10:40:09 +02:00
parent 78db9902b0
commit f74578d26a
Signed by: Aroy
GPG key ID: DB9689E9391DD156

View file

@ -21,22 +21,22 @@ def get_urls(string:str = None) -> list:
def convert_size(size_bytes: int) -> str:
"""
A function that converts the given size in bytes to a human-readable format.
"""
A function that converts the given size in bytes to a human-readable format.
Parameters:
size_bytes (int): An integer representing the size in bytes to be converted.
Parameters:
size_bytes (int): An integer representing the size in bytes to be converted.
Returns:
A string representing the converted size with the appropriate unit (B, KiB, MiB, GiB, etc.).
"""
if size_bytes == 0:
return "0B"
size_name = ("B", "KiB", "MiB", "GiB", "TiB", "PiB", "EiB", "ZiB", "YiB")
i = int(math.floor(math.log(size_bytes, 1024)))
p = math.pow(1024, i)
s = round(size_bytes / p, 2)
return f"{s} {size_name[i]}"
Returns:
A string representing the converted size with the appropriate unit (B, KiB, MiB, GiB, etc.).
"""
if size_bytes == 0:
return "0B"
size_name = ("B", "KiB", "MiB", "GiB", "TiB", "PiB", "EiB", "ZiB", "YiB")
i = int(math.floor(math.log(size_bytes, 1024)))
p = math.pow(1024, i)
s = round(size_bytes / p, 2)
return f"{s} {size_name[i]}"
def is_string_html(string: str) -> bool: