mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-25 01:38:02 +02:00
pep8
This commit is contained in:
@@ -60,8 +60,8 @@ def screen_cursor_to_column(c: int) -> None:
|
||||
write(CSI + '%dG' % c)
|
||||
|
||||
|
||||
def screen_cursor_to_line(l: int) -> None:
|
||||
write(CSI + '%dd' % l)
|
||||
def screen_cursor_to_line(ln: int) -> None:
|
||||
write(CSI + '%dd' % ln)
|
||||
|
||||
|
||||
def screen_set_mode(x: int, private: bool) -> None:
|
||||
|
||||
Reference in New Issue
Block a user