autopep8: Update with changes to make autopep8 -a -a -a happy

This commit is contained in:
Brian C. Lane 2023-08-07 10:08:32 -07:00 committed by Simon de Vlieger
parent a7541ad8b4
commit 44c28c8c16
26 changed files with 66 additions and 59 deletions

View file

@ -57,7 +57,7 @@ class LoopConfig(ctypes.Structure):
('fd', ctypes.c_uint32),
('block_size', ctypes.c_uint32),
('info', LoopInfo),
('__reserved', ctypes.c_uint64*8),
('__reserved', ctypes.c_uint64 * 8),
]
@ -652,7 +652,7 @@ class LoopControl:
if callable(setup):
try:
setup(lo)
except:
except BaseException:
lo.close()
raise