Skip to content

Commit

Permalink
Fix a PEP8 issue (to perform builds)
Browse files Browse the repository at this point in the history
  • Loading branch information
misl6 committed Oct 5, 2024
1 parent 79bc56e commit 0005161
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion win/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def sha1OfFile(filename):
sha = hashlib.sha1()
with open(filename, 'rb') as f:
while True:
block = f.read(2 ** 10) # Magic number: one-megabyte blocks.
block = f.read(2 ** 10) # Magic number: one-megabyte blocks.
if not block:
break
sha.update(block)
Expand Down

0 comments on commit 0005161

Please sign in to comment.