Skip to content

Commit b4cd111

Browse files
committed
fix code formatting
1 parent be7a900 commit b4cd111

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

virtnbd-nbdkit-plugin

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,9 @@ def pread(h, buf, offset, flags):
173173
remaining = dataRange - blockRange
174174
while remaining > 0:
175175
data += os.pread(h, blockRange - fileOffset, fileOffset)
176-
log(f"Read spans multiple blocks, need to read: {remaining} from next block.")
176+
log(
177+
f"Read spans multiple blocks, need to read: {remaining} from next block."
178+
)
177179
next_block = next(
178180
(b for b in blockMap if b["originalOffset"] > block["originalOffset"]),
179181
None,

0 commit comments

Comments
 (0)