Skip to content

Commit 81be954

Browse files
committed
remove debugging print that was accidentally left in
1 parent dd1c9a3 commit 81be954

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

adafruit_progressbar.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,6 @@ def progress(self, value):
121121
_prev_pixel = max(2, int(self._width * self._progress_val - 2))
122122
_new_pixel = max(int(self._width * value - 2), 2)
123123
for _w in range(_prev_pixel, _new_pixel - 1, -1):
124-
print("w {}".format(_w))
125124
for _h in range(2, self._height - 2):
126125
self._bitmap[_w, _h] = 0
127126
else:

0 commit comments

Comments
 (0)