Skip to content

Commit b81f703

Browse files
committed
Remove debug text
1 parent ea8fa01 commit b81f703

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

displayio_cartesian.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,7 @@ def _add_point(self, x: int, y: int) -> None:
506506
:return: None
507507
rtype: None
508508
"""
509-
print("X: {}, Y: {}".format(x, y))
509+
510510
local_x, local_y = self._calc_local_xy(x, y)
511511
if self._verbose:
512512
print("")
@@ -626,8 +626,6 @@ def add_plot_line(self, x: int, y: int) -> None:
626626
:return: None
627627
"""
628628
self._add_point(x, y)
629-
print("CURRENT POINTS:")
630-
print(self.plot_line_point)
631629
if len(self.plot_line_point) > 1:
632630
bitmaptools.draw_line(
633631
self._plot_bitmap,

0 commit comments

Comments
 (0)