Skip to content

Commit 756088b

Browse files
author
Margaret Matocha
committed
deleted print statements
1 parent 9a73454 commit 756088b

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

adafruit_display_text/label.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
https://github.com/adafruit/circuitpython/releases
3333
"""
3434

35-
print('loading label.py Yay!')
3635

3736
import displayio
3837

@@ -110,7 +109,6 @@ def _update_text(self, new_text): # pylint: disable=too-many-locals
110109
)
111110
/ 2
112111
)
113-
# print("y offset from baseline", y_offset)
114112
left = right = top = bottom = 0
115113
for character in new_text:
116114
if character == "\n":
@@ -163,7 +161,7 @@ def _update_text(self, new_text): # pylint: disable=too-many-locals
163161

164162
x += glyph.shift_x
165163

166-
# TODO skip this for control sequences or non-printables.
164+
# TODO skip this for control sequences or non-qables.
167165
i += 1
168166
old_c += 1
169167
# skip all non-prinables in the old string

0 commit comments

Comments
 (0)