Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
jsfehler committed Feb 20, 2024
1 parent 2a6f4b9 commit 8233195
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion splinter/driver/webdriver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,7 @@ def fill_form(self, field_values, form_id=None, name=None, ignore_missing=False)
element.value = value
except ElementDoesNotExist as e:
if not ignore_missing:
raise ElementDoesNotExist(e) # NOQA: TRY200
raise ElementDoesNotExist(e) # NOQA: TRY200

def type(self, name, value, slowly=False): # NOQA: A003
warnings.warn(
Expand Down

0 comments on commit 8233195

Please sign in to comment.