lint code
This commit is contained in:
@ -61,7 +61,7 @@ def get_table(key):
|
||||
s = m.digest()
|
||||
(a, b) = struct.unpack('<QQ', s)
|
||||
table = [c for c in string.maketrans('', '')]
|
||||
for i in xrange(1, 1024):
|
||||
for i in range(1, 1024):
|
||||
table.sort(lambda x, y: int(a % (ord(x) + i) - a % (ord(y) + i)))
|
||||
return table
|
||||
|
||||
|
Reference in New Issue
Block a user