Updated human_readable to use python3 syntax
This commit is contained in:
parent
3578469723
commit
2c620ab8a6
|
@ -110,10 +110,10 @@ class BulkData(object):
|
|||
|
||||
for unit in ['B', 'KiB', 'MiB', 'GiB', 'TiB', 'PiB', 'EiB', 'ZiB']:
|
||||
if abs(before) < 1024.0:
|
||||
return '%3.1f%s' % (before, unit)
|
||||
return '{:3.1f}{}'.format(before, unit)
|
||||
before /= 1024.0
|
||||
|
||||
return '%.1f%s' % (before, 'YiB')
|
||||
return '{:.1f}{}'.format(before, 'YiB')
|
||||
|
||||
return self.scryfallJson['data'][num]['compressed_size']
|
||||
|
||||
|
|
Loading…
Reference in New Issue