autopep8: Update with changes to make autopep8 -a -a -a happy
This commit is contained in:
parent
a7541ad8b4
commit
44c28c8c16
26 changed files with 66 additions and 59 deletions
|
|
@ -10,7 +10,7 @@ def skipcpio(fd):
|
|||
pos = 0
|
||||
while True:
|
||||
os.lseek(fd, pos, os.SEEK_SET)
|
||||
data = os.read(fd, 2*cpio_len)
|
||||
data = os.read(fd, 2 * cpio_len)
|
||||
if data == b'':
|
||||
# end of file, cpio_end not found, cat it all
|
||||
pos = 0
|
||||
|
|
@ -24,7 +24,7 @@ def skipcpio(fd):
|
|||
if pos == 0:
|
||||
return pos
|
||||
# skip zeros
|
||||
n = 2*cpio_len
|
||||
n = 2 * cpio_len
|
||||
while True:
|
||||
data = os.read(fd, n)
|
||||
if data == b'':
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue