Skip to content

Commit

Permalink
Remove deprecated parameter from QuerySelectMultipleField instantiation
Browse files Browse the repository at this point in the history
  • Loading branch information
Dosenpfand committed Feb 1, 2023
1 parent 3d17741 commit 97f94e1
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions flask_appbuilder/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,13 +188,11 @@ def _convert_many_to_many(
):
query_func = self._get_related_query_func(col_name, filter_rel_fields)
get_pk_func = self._get_related_pk_func(col_name)
allow_blank = True
form_props[col_name] = QuerySelectMultipleField(
label,
description=description,
query_func=query_func,
get_pk_func=get_pk_func,
allow_blank=allow_blank,
validators=lst_validators,
widget=Select2ManyWidget(),
)
Expand Down

0 comments on commit 97f94e1

Please sign in to comment.