Skip to content

Commit b618549

Browse files
authored
[py] remove unused positional kind arg of WheelInput (#10463)
fixes #10210
1 parent 00d8c8d commit b618549

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

py/selenium/webdriver/common/actions/action_builder.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ def add_pointer_input(self, kind, name) -> PointerInput:
7373
self._add_input(new_input)
7474
return new_input
7575

76-
def add_wheel_input(self, kind, name) -> WheelInput:
77-
new_input = WheelInput(kind, name)
76+
def add_wheel_input(self, name) -> WheelInput:
77+
new_input = WheelInput(name)
7878
self._add_input(new_input)
7979
return new_input
8080

0 commit comments

Comments
 (0)