Skip to content

Commit

Permalink
Fix deprecated usage in custom wtforms widget class
Browse files Browse the repository at this point in the history
  • Loading branch information
frankie567 committed Nov 3, 2024
1 parent 165ad6e commit 2513648
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fief/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ def _choices_generator(self, choices):

for value, label in _choices:
selected = value in data_values
yield (value, label, selected)
yield (value, label, selected, {})

def process_data(self, value):
try:
Expand Down

0 comments on commit 2513648

Please sign in to comment.