Skip to content

Commit

Permalink
Merge pull request #817 from alex-ball/patch-1
Browse files Browse the repository at this point in the history
Fix SelectFieldBase.iter_choices docstring
  • Loading branch information
azmeuk authored Nov 1, 2023
2 parents e205a99 + fae4a3c commit 5c25865
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wtforms/fields/choices.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def __init__(self, label=None, validators=None, option_widget=None, **kwargs):
def iter_choices(self):
"""
Provides data for choice widget rendering. Must return a sequence or
iterable of (value, label, selected) tuples.
iterable of (value, label, selected, render_kw) tuples.
"""
raise NotImplementedError()

Expand Down

0 comments on commit 5c25865

Please sign in to comment.