diff --git a/scripts/Screen_Shot/screen_shot.py b/scripts/Screen_Shot/screen_shot.py index f2a1410..ac76c97 100644 --- a/scripts/Screen_Shot/screen_shot.py +++ b/scripts/Screen_Shot/screen_shot.py @@ -5,7 +5,7 @@ def screenshot_fun(): print("Screenshot program runs on console\nchange the sleep time if you can the screenshot captured the terminal also") sleepTimer = 2 print(f"You've {sleepTimer} to minimize the terminal window") - sleep(2) + sleep(sleepTimer) print("Captured the screen now") screenshot_img = pyautogui.screenshot() screenshot_img.save("screen.png")