[pre-commit.ci lite] apply automatic fixes

This commit is contained in:
pre-commit-ci-lite[bot] 2025-11-29 08:21:36 +00:00 committed by GitHub
parent e74c39d007
commit 8be69a6bed
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -291,7 +291,9 @@ class Blueprint(Scaffold):
state = self.make_setup_state(app, options, first_bp_registration)
self._register_static(state)
self._merge_blueprint_funcs_if_needed(app, name, first_bp_registration, first_name_registration)
self._merge_blueprint_funcs_if_needed(
app, name, first_bp_registration, first_name_registration
)
self._run_deferred_functions(state)
self._register_cli(app, name, options)
self._register_nested_blueprints(app, state, name)
@ -362,7 +364,7 @@ class Blueprint(Scaffold):
def _compute_nested_blueprint_options(
self,
blueprint: "Blueprint",
blueprint: Blueprint,
state: BlueprintSetupState,
bp_options: dict[str, t.Any],
name: str,
@ -400,7 +402,6 @@ class Blueprint(Scaffold):
return bp_options
def _merge_blueprint_funcs(self, app: App, name: str) -> None:
def extend(
bp_dict: dict[ft.AppOrBlueprintKey, list[t.Any]],