Get all the template functions declared by plugins as a dictionary.
()
| 552 | |
| 553 | |
| 554 | def template_funcs() -> TFuncMap[str]: |
| 555 | """Get all the template functions declared by plugins as a |
| 556 | dictionary. |
| 557 | """ |
| 558 | funcs: TFuncMap[str] = {} |
| 559 | for plugin in find_plugins(): |
| 560 | funcs.update(plugin.template_funcs) |
| 561 | return funcs |
| 562 | |
| 563 | |
| 564 | def early_import_stages() -> list[ImportStageFunc]: |
nothing calls this directly
no test coverage detected