Skip to content

Commit 84b3169

Browse files
committed
DOC: Adjust comments on os_compat.
1 parent fa368d6 commit 84b3169

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

botcity/core/os_compat.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Module for OS Compatibility issues and PyAutoGui
1+
# Module for OS Compatibility issues and PyAutoGui/pynput
22
import platform
33

44
OSX_LEFT = "left"
@@ -37,10 +37,8 @@ def _multiClick(x, y, button, num, interval=0.0):
3737

3838
def osx_click(x=None, y=None, clicks=1, interval=0.0, button="left", **kwargs):
3939
"""
40-
This method is here due to issues with pyautogui implementation of multiple clicks on macOS.
40+
This method is here due to issues with pyautogui/pynput implementation of multiple clicks on macOS.
4141
For that, the code above from _multiClick was pulled from pyautogui and locally patched.
42-
A PR will be submitted to the pyautogui project to fix the issue upstream and once a new
43-
release with the patch is available we will remove our local patch here.
4442
"""
4543
_multiClick(x=x, y=y, button=button, num=clicks, interval=interval)
4644

0 commit comments

Comments
 (0)