Skip to content

Commit 12440fd

Browse files
author
Margaret Matocha
committed
Ran black on example
1 parent c16dac7 commit 12440fd

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

examples/display_text_label_vs_bitmap_label_comparison.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@
8989
print("Display is started")
9090

9191

92-
9392
preload_glyphs = (
9493
True # set this to True if you want to preload the font glyphs into memory
9594
)
@@ -179,7 +178,7 @@
179178
line_spacing=1.25,
180179
scale=my_scale,
181180
anchor_point=(1.0, 0),
182-
anchored_position=(display.width-10, 60),
181+
anchored_position=(display.width - 10, 60),
183182
)
184183

185184
label2 = label.Label(
@@ -196,7 +195,7 @@
196195
line_spacing=1.25,
197196
scale=my_scale,
198197
anchor_point=(1.0, 0),
199-
anchored_position=(display.width-10, 120),
198+
anchored_position=(display.width - 10, 120),
200199
)
201200

202201
gc.collect()
@@ -218,4 +217,4 @@
218217

219218
display.show(main_group)
220219
while True:
221-
pass
220+
pass

0 commit comments

Comments
 (0)