pep8: blank after comma and colon

This commit is contained in:
Thomas Waldmann 2014-11-18 18:35:09 +01:00
parent 179eefae29
commit 63965fd2d9
4 changed files with 10 additions and 10 deletions

View file

@ -130,7 +130,7 @@ class FileList(QtGui.QListWidget):
thresh = 1024.0
if b < thresh:
return '{0} B'.format(b)
units = ['KiB','MiB','GiB','TiB','PiB','EiB','ZiB','YiB']
units = ['KiB', 'MiB', 'GiB', 'TiB', 'PiB', 'EiB', 'ZiB', 'YiB']
u = 0
b /= thresh
while b >= thresh: