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 8233195 commit 2dc6a38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion splinter/driver/lxmldriver.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ def fill_form(self, field_values, form_id=None, name=None, ignore_missing=False)
control.value = value
except ElementDoesNotExist as e:
if not ignore_missing:
raise ElementDoesNotExist(e)
raise ElementDoesNotExist(e) # NOQA: TRY200

def choose(self, name, value):
self.find_by_name(name).first._control.value = value
Expand Down

0 comments on commit 2dc6a38

Please sign in to comment.