diff --git a/fill3/fill3/terminal.py b/fill3/fill3/terminal.py index fbd3b21..4552ecb 100644 --- a/fill3/fill3/terminal.py +++ b/fill3/fill3/terminal.py @@ -38,7 +38,7 @@ globals().update({f"CTRL_{letter}": chr(index + 1) def move(x, y): - return ESC + f"[{y + 1:d};{x + 1:d}H" + return f"{ESC}[{y + 1:d};{x + 1:d}H" @contextlib.contextmanager