Remove redundant semicolons in Python code

This commit is contained in:
practicalswift
2017-01-20 22:55:26 +01:00
parent 82274c02ed
commit 5cdf10611f
8 changed files with 16 additions and 16 deletions

View File

@@ -39,7 +39,7 @@ for folder in folders:
if extension.lower() == '.png':
print("optimizing "+file+"..."),
file_path = os.path.join(absFolder, file)
fileMetaMap = {'file' : file, 'osize': os.path.getsize(file_path), 'sha256Old' : file_hash(file_path)};
fileMetaMap = {'file' : file, 'osize': os.path.getsize(file_path), 'sha256Old' : file_hash(file_path)}
fileMetaMap['contentHashPre'] = content_hash(file_path)
pngCrushOutput = ""