Skip to content

Commit f202f4e

Browse files
committed
fix(steami_screen): remove unused constants
1 parent 7054fde commit f202f4e

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

lib/steami_screen/steami_screen/screen.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,6 @@
4242

4343
# --- Cardinal position names ---
4444

45-
_CARDINALS = ("N", "NE", "E", "SE", "S", "SW", "W", "NW", "CENTER")
46-
47-
4845
class Screen:
4946
"""High-level wrapper around a raw display backend."""
5047

@@ -333,7 +330,6 @@ def _fmt(v):
333330

334331
def menu(self, items, selected=0, color=WHITE):
335332
"""Draw a scrollable list menu."""
336-
_cx, _cy = self.center
337333
item_h = self.CHAR_H + 6
338334
visible = min(len(items), (self.height - 40) // item_h)
339335

0 commit comments

Comments
 (0)