Well, checkMouse() returns None if there were no clicks since the last call, which might be your issue.
If that isn't it, checkMouse() returns a Point with x and y values of the last mouse click (when applicable), so you can access the x and y properties of it through getX() and getY() or any other number of methods as you would a normal Point.