Skip to main content

explain_template_loading_attempts

This should help developers understand what failed

def explain_template_loading_attempts(
app: App,
template: str,
attempts: list[tuple[BaseLoader, Scaffold, tuple[str, str | None, t.Callable[[], bool] | None] | None]]
) - > None

This should help developers understand what failed

Parameters

NameTypeDescription
appAppThe Flask application instance to log information to.
templatestrThe name of the template that was being searched for.
attempts`list[tuple[BaseLoader, Scaffold, tuple[str, strNone, t.Callable[[], bool]

Returns

TypeDescription
None