Skip to content

Commit

Permalink
imagefilterfix
Browse files Browse the repository at this point in the history
  • Loading branch information
radarhere committed Dec 21, 2024
1 parent 79c337f commit 7705284
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PIL/ImageFilter.py
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ def transform(
ch_out = channels or ch_in
size_1d, size_2d, size_3d = self.size

table = [0] * (size_1d * size_2d * size_3d * ch_out)
table: Sequence[float] = [0] * (size_1d * size_2d * size_3d * ch_out)
idx_in = 0
idx_out = 0
for b in range(size_3d):
Expand Down

0 comments on commit 7705284

Please sign in to comment.