Skip to content

Commit 65a9bbc

Browse files
committed
lint
1 parent 326bfde commit 65a9bbc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PIL/DdsImagePlugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -520,7 +520,7 @@ def decode(self, buffer: bytes | Image.SupportsArrayInterface) -> tuple[int, int
520520
# work around BufferedIO not being seekable
521521
has_more = len(chunk) > 0
522522
value = int.from_bytes(chunk, "little")
523-
for i, mask, in enumerate(masks):
523+
for i, mask in enumerate(masks):
524524
masked_value = value & mask
525525
# Remove the zero padding, and scale it to 8 bits
526526
data += o8(

0 commit comments

Comments
 (0)