pylint: fix issues

This commit is contained in:
Roman Zeyde
2015-06-16 10:33:48 +03:00
parent 768ee33bf2
commit 7ef71df81b
6 changed files with 12 additions and 12 deletions

View File

@@ -47,7 +47,7 @@ def bytes2num(s):
def num2bytes(value, size):
res = []
for i in range(size):
for _ in range(size):
res.append(value & 0xFF)
value = value >> 8
assert value == 0