From f7c1d959feb4c4b03ef6d91cb568b29608244351 Mon Sep 17 00:00:00 2001 From: Chirayu Kapoor <32087475+C-Society@users.noreply.github.com> Date: Mon, 15 Oct 2018 23:05:33 +0530 Subject: [PATCH] Comment Removal --- ges.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ges.py b/ges.py index 17a50b9..34b29ad 100644 --- a/ges.py +++ b/ges.py @@ -16,11 +16,11 @@ pyautogui.hotkey('ctrl', 'pgup') # perform "ctrl+pgup" operation which moves to the previous tab if 'down' in incoming_data: # if incoming data is 'down' - #pyautogui.press('down') # performs "down arrow" operation which scrolls down the page + # performs "down arrow" operation which scrolls down the page pyautogui.scroll(-100) if 'up' in incoming_data: # if incoming data is 'up' - #pyautogui.press('up') # performs "up arrow" operation which scrolls up the page + # performs "up arrow" operation which scrolls up the page pyautogui.scroll(100) if 'change' in incoming_data: # if incoming data is 'change'