Skip to content

Commit 8ac594d

Browse files
committed
remove debugging prints
1 parent 794451b commit 8ac594d

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

adafruit_display_text/__init__.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,7 @@ def measure(string):
4141
swidth = measure(" ")
4242
firstword = True
4343
for line_in_input in string.split("\n"):
44-
45-
print("line: {}".format(line_in_input))
4644
for index, word in enumerate(line_in_input.split(" ")):
47-
print("word: {}".format(word))
4845
wwidth = measure(word)
4946
word_parts = []
5047
cur_part = ""

0 commit comments

Comments
 (0)