Skip to content

Commit d5e1209

Browse files
committed
Fix syntax error from last commit
1 parent eb1495b commit d5e1209

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/rgb_display_pillow_image.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
else:
8585
scaled_width = width
8686
scaled_height = image.height * width // image.width
87-
image = image.resize((scaled_width, scaled_height), Image..Resampling.BICUBIC)
87+
image = image.resize((scaled_width, scaled_height), Image.Resampling.BICUBIC)
8888

8989
# Crop and center the image
9090
x = scaled_width // 2 - width // 2

0 commit comments

Comments
 (0)