fix whitespace after opening bracket

master
Adeeb Shihadeh 2020-05-31 21:36:34 -07:00
parent f70ef291f9
commit 3d5a7179b0
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ class Info():
for i in range(len(bytes)):
message.ones[i] = message.ones[i] | int(bytes[i])
# Inverts the data and masks it to a byte to get the zeros as ones.
message.zeros[i] = message.zeros[i] | ( (~int(bytes[i])) & 0xff)
message.zeros[i] = message.zeros[i] | ((~int(bytes[i])) & 0xff)
def PrintUnique(interesting_file, background_files):