@@ -158,18 +158,17 @@ def mouse_scroll(direction: str, times=1, *, modifier: str = None, blind=True, m
158
158
159
159
Scroll the mouse wheel.
160
160
161
- :param str direction: the scroll direction. Takes one of the following
162
- values: ``"up"``, ``"down"``, ``"left"``, ``"right"``.
161
+ The * direction* argument specifies the scroll direction. Takes one of the
162
+ following values: ``"up"``, ``"down"``, ``"left"``, ``"right"``.
163
163
164
- :param int times: the number of notches to turn the wheel. However, some
165
- applications do not obey *times* higher than 1. Use the following
166
- workaround::
164
+ The * times* argument specifies the number of notches to turn the wheel.
165
+ However, some applications do not obey *times* higher than 1. Use the
166
+ following workaround::
167
167
168
- for _ in range(5):
169
- ahkpy.mouse_scroll("up")
168
+ for _ in range(5):
169
+ ahkpy.mouse_scroll("up")
170
170
171
- :param options: the optional keyword-only arguments that :func:`click`
172
- takes.
171
+ For the *options* arguments refer to :func:`click`.
173
172
174
173
:command: `Send, {Click}
175
174
<https://www.autohotkey.com/docs/commands/Send.htm#Click>`_
@@ -334,7 +333,7 @@ def get_cursor_type() -> str:
334
333
Wait, Unknown.
335
334
336
335
The acronyms used with the size-type cursors are compass directions, e.g.
337
- NESW = NorthEast+SouthWest. The hand-shaped cursors (pointing and grabbing)
336
+ NESW is NorthEast+SouthWest. The hand-shaped cursors (pointing and grabbing)
338
337
are classified as Unknown.
339
338
"""
340
339
return ahk_call ("GetVar" , "A_Cursor" )
0 commit comments