diff --git a/src/acurses.py b/src/acurses.py index 5f4efde..aa975d0 100644 --- a/src/acurses.py +++ b/src/acurses.py @@ -68,6 +68,7 @@ def getch(self) -> int: def move(self, new_y: int, new_x: int) -> None: """Move cursor to (new_y, new_x)""" + # TODO: might need to add 1 to both args to account for offset print(f"\033[{new_y};{new_x}H", end="") def _parse_attrs(self, attrs: int) -> str: