Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
matthew-shaw committed Jan 20, 2025
1 parent 3797e6d commit ee812a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion govuk_frontend_wtf/wtforms_widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ def __call__(self, field, **kwargs):
kwargs["items"] = []

# Construct select box choices
for val, label, selected, render_kw in field.iter_choices():
for val, label, selected, _render_kw in field.iter_choices():
item = {"text": label, "value": val, "selected": selected}

kwargs["items"].append(item)
Expand Down

0 comments on commit ee812a4

Please sign in to comment.