Skip to content

Commit 39ceed7

Browse files
committed
[py] Avoid shadowing builtin in variable names
1 parent fed9371 commit 39ceed7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,5 +94,5 @@ def clear_actions(self) -> None:
9494
"""Clears actions that are already stored on the remote end."""
9595
self.driver.execute(Command.W3C_CLEAR_ACTIONS)
9696

97-
def _add_input(self, input) -> None:
98-
self.devices.append(input)
97+
def _add_input(self, new_input) -> None:
98+
self.devices.append(new_input)

0 commit comments

Comments
 (0)