mirror of
https://github.com/goharbor/harbor.git
synced 2024-12-28 19:47:58 +01:00
6 lines
191 B
Python
6 lines
191 B
Python
|
from hurry.filesize import size
|
||
|
from hurry.filesize import alternative
|
||
|
|
||
|
def convert_int_to_readable_file_size(file_size):
|
||
|
return size(file_size, system=alternative).replace(' ', '')
|