You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
"""
|
|
Tools module.
|
|
"""
|
|
def kbytes_to_gbytes(value: float) -> str:
|
|
"""
|
|
Transform Kb into Gb.
|
|
"""
|
|
_value = value / (1024 ** 3)
|
|
return "{:.2f}".format(_value)
|