Skip to content

Commit

Permalink
font: remove debug print() statements
Browse files Browse the repository at this point in the history
  • Loading branch information
josuah committed Oct 26, 2023
1 parent 5ff0517 commit 5be4c4a
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions modules/text.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,8 @@ def justify(self, justify):
self.y = self.y
elif justify in middle:
self.y = self.y - FONT_HEIGHT // 2
print('middle')
elif justify in bottom:
self.y = self.y - FONT_HEIGHT
print('bottom')
else:
raise ValueError("unknown justify value")

Expand Down

0 comments on commit 5be4c4a

Please sign in to comment.