delete unnecessary files

This commit is contained in:
2025-02-06 15:34:13 +01:00
parent 08cd18f3f1
commit 02d7b5a09f
4 changed files with 0 additions and 35 deletions

View File

@@ -1,16 +0,0 @@
import time
import pyautogui
def main():
key_count = input("How many keys do you have? ")
key = pyautogui.RIGHT
for _i in range(int(key_count)):
pyautogui.keyDown(key)
pyautogui.keyUp(key)
time.sleep(0.1)
if __name__ == "__main__":
main()