From 83c8affabde1e124b47bcca7040e74ec0d19a9f1 Mon Sep 17 00:00:00 2001 From: eqperes Date: Tue, 16 Jul 2024 11:44:59 +0200 Subject: [PATCH] Respect black linting --- flask_appbuilder/baseviews.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flask_appbuilder/baseviews.py b/flask_appbuilder/baseviews.py index 5b11afe421..0dc908c4b2 100644 --- a/flask_appbuilder/baseviews.py +++ b/flask_appbuilder/baseviews.py @@ -1382,7 +1382,7 @@ def is_get_mutation_allowed(self) -> bool: def populate_item_from_form(self, form, item, is_created): """ - Populate the properties of the item to be created or updated based + Populate the properties of the item to be created or updated based on the content of the form. """ form.populate_obj(item)