Skip to content

Commit dd2195f

Browse files
authored
fix: MultiAction.add() return
closes #956
1 parent 1c6dcdf commit dd2195f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

appium/webdriver/common/multi_action.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def __init__(self, driver: 'WebDriver', element: Optional['WebElement'] = None)
4545
self._element = element
4646
self._touch_actions: List['TouchAction'] = []
4747

48-
def add(self, *touch_actions: 'TouchAction') -> None:
48+
def add(self, *touch_actions: 'TouchAction') -> 'MultiAction':
4949
"""Add TouchAction objects to the MultiAction, to be performed later.
5050
5151
Args:

0 commit comments

Comments
 (0)