Skip to content

Commit bab5396

Browse files
committed
dearest pylint
1 parent e54c825 commit bab5396

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/epd_blinka.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
draw.rectangle((x, top, x+shape_width, bottom), outline=RED, fill=BLACK)
5858
x += shape_width+padding
5959
# Draw a triangle.
60-
draw.polygon([(x, bottom), (x+shape_width/2, top), (x+shape_width, bottom)],
60+
draw.polygon([(x, bottom), (x+shape_width/2, top), (x+shape_width, bottom)],
6161
outline=BLACK, fill=RED)
6262
x += shape_width+padding
6363
# Draw an X.
@@ -68,7 +68,7 @@
6868
# Load default font.
6969
font = ImageFont.load_default()
7070

71-
# Alternatively load a TTF font. Make sure the .ttf font
71+
# Alternatively load a TTF font. Make sure the .ttf font
7272
# file is in the same directory as the python script!
7373
# Some other nice fonts to try: http://www.dafont.com/bitmap.php
7474
#font = ImageFont.truetype('Minecraftia.ttf', 8)

0 commit comments

Comments
 (0)