1
0
Fork 0
mirror of synced 2024-06-28 11:00:35 +12:00

add space in human readable sizes

This commit is contained in:
Nick Sweeting 2019-04-24 11:45:04 -04:00
parent 56d0b2c088
commit 95a7d3d1de

View file

@ -587,9 +587,9 @@ def get_dir_size(path: str, recursive: bool=True, pattern: Optional[str]=None) -
def human_readable_size(num_bytes: Union[int, float]) -> str:
for count in ['Bytes','KB','MB','GB']:
if num_bytes > -1024.0 and num_bytes < 1024.0:
return '%3.1f%s' % (num_bytes, count)
return '%3.1f %s' % (num_bytes, count)
num_bytes /= 1024.0
return '%3.1f%s' % (num_bytes, 'TB')
return '%3.1f %s' % (num_bytes, 'TB')
@enforce_types