Skip to content

Commit f962c3c

Browse files
committed
linting
1 parent b5a040f commit f962c3c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

micropython/examples/pico_display/display_png_offset_palette.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@
4141
# Open our PNG File from flash. In this example we're using an image of a cartoon pencil.
4242
# You can use Thonny to transfer PNG Images to your Pico.
4343
png.open_file("pencil_gray.png")
44-
44+
4545
# Horizontally/vertically center the three PNG Images.
4646
png_w = png.get_width()
4747
png_h = png.get_height()
48-
48+
4949
offset_x = (width - png_w * 2) // 2
5050
height_y = (height // 3)
5151
offset_y = (height_y - png_h * 2) // 2

0 commit comments

Comments
 (0)