First time asking here, so I hope someone has an answer for me.
I am using Ubuntu 14.04LTS, and using pyautogui for the first time.
From the terminal I have just only imported pyautogui, and get the output of:
<class 'Xlib.protocol.request.QueryExtension>
When I run pyautogui inside of a python(2.7.6) file, this line is always output to the terminal. Is there anyway to stop pyautogui from printing this line to the terminal?
import pyautogui
def someFunction():
....
return x&o's
someFunction()