Skip to content

Commit

Permalink
[py] Avoid shadowing builtin in variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
symonk committed Jan 27, 2023
1 parent fed9371 commit 39ceed7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions py/selenium/webdriver/common/actions/action_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,5 +94,5 @@ def clear_actions(self) -> None:
"""Clears actions that are already stored on the remote end."""
self.driver.execute(Command.W3C_CLEAR_ACTIONS)

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

0 comments on commit 39ceed7

Please sign in to comment.