(
bp_dict: dict[ft.AppOrBlueprintKey, list[t.Any]],
parent_dict: dict[ft.AppOrBlueprintKey, list[t.Any]],
)
| 378 | |
| 379 | def _merge_blueprint_funcs(self, app: App, name: str) -> None: |
| 380 | def extend( |
| 381 | bp_dict: dict[ft.AppOrBlueprintKey, list[t.Any]], |
| 382 | parent_dict: dict[ft.AppOrBlueprintKey, list[t.Any]], |
| 383 | ) -> None: |
| 384 | for key, values in bp_dict.items(): |
| 385 | key = name if key is None else f"{name}.{key}" |
| 386 | parent_dict[key].extend(values) |
| 387 | |
| 388 | for key, value in self.error_handler_spec.items(): |
| 389 | key = name if key is None else f"{name}.{key}" |
no outgoing calls