remove test.py

This commit is contained in:
Digital Studium 2024-04-11 21:53:22 +03:00
parent ff85b0111c
commit 2212c58a81
1 changed files with 0 additions and 16 deletions

16
test.py
View File

@ -1,16 +0,0 @@
import time
import curses
def draw(canvas):
while True:
key = canvas.getkey()
if key == ("\x1b"):
print(f"Вы ввели Escape!")
print(f"Вы ввели {key}")
if __name__ == '__main__':
curses.update_lines_cols()
curses.wrapper(draw)