Skip to content

Commit 6011a75

Browse files
committed
final newline
1 parent 8e245d6 commit 6011a75

10 files changed

Lines changed: 14 additions & 16 deletions

CircuitPython_displayio/displayio_display_driver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
for x in range(10, 20):
3232
for y in range(10, 20):
33-
bitmap[x, y] = 1
33+
bitmap[x, y] = 1
3434

3535
tile_grid = displayio.TileGrid(bitmap, pixel_shader=palette)
3636

CircuitPython_displayio/displayio_display_manual.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@
5757

5858
for x in range(10, 20):
5959
for y in range(10, 20):
60-
bitmap[x, y] = 1
60+
bitmap[x, y] = 1
6161

6262
tile_grid = displayio.TileGrid(bitmap, pixel_shader=palette)
6363

6464
group = displayio.Group()
6565
group.append(tile_grid)
6666
display.show(group)
67-
display.refresh_soon()
67+
display.refresh_soon()

CircuitPython_displayio/displayio_font.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import board
2-
import displayio
32
from adafruit_bitmap_font import bitmap_font
43
from adafruit_display_text import label
54

@@ -18,4 +17,4 @@
1817
text_area.y = 20
1918

2019
# Show it
21-
display.show(text_area)
20+
display.show(text_area)

CircuitPython_displayio/displayio_imageload.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
display = board.DISPLAY
66

77
bitmap, palette = adafruit_imageload.load("/purple.bmp",
8-
bitmap=displayio.Bitmap,
9-
palette=displayio.Palette)
8+
bitmap=displayio.Bitmap,
9+
palette=displayio.Palette)
1010

1111
# Create a TileGrid to hold the bitmap
1212
tile_grid = displayio.TileGrid(bitmap, pixel_shader=palette)
@@ -22,4 +22,4 @@
2222

2323
# Loop forever so you can enjoy your image
2424
while True:
25-
pass
25+
pass

CircuitPython_displayio/displayio_ondiskbitmap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@
2323

2424
# Loop forever so you can enjoy your image
2525
while True:
26-
pass
26+
pass

CircuitPython_displayio/displayio_parallelbus.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,11 @@
5555

5656
for x in range(10, 20):
5757
for y in range(10, 20):
58-
bitmap[x, y] = 1
58+
bitmap[x, y] = 1
5959

6060
tile_grid = displayio.TileGrid(bitmap, pixel_shader=palette)
6161

6262
group = displayio.Group()
6363
group.append(tile_grid)
6464
display.show(group)
65-
display.refresh_soon()
65+
display.refresh_soon()

CircuitPython_displayio/displayio_pixels.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@
2929
# Draw even more pixels
3030
for x in range(150, 170):
3131
for y in range(100, 110):
32-
bitmap[x, y] = 1
32+
bitmap[x, y] = 1

CircuitPython_displayio/displayio_sprite_sheet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@
3535
while True:
3636
sprite[0] = source_index % 6
3737
source_index += 1
38-
time.sleep(2)
38+
time.sleep(2)

CircuitPython_displayio/displayio_text.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import board
2-
import displayio
32
import terminalio
43
from adafruit_display_text import label
54

@@ -18,4 +17,4 @@
1817
text_area.y = 80
1918

2019
# Show it
21-
display.show(text_area)
20+
display.show(text_area)

CircuitPython_displayio/displayio_tilegrids.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,4 @@
6363
sprite.y = 70
6464

6565
# Add the Group to the Display
66-
display.show(group)
66+
display.show(group)

0 commit comments

Comments
 (0)