Add native Python types support to templates (#41227)

Co-authored-by: Paulus Schoutsen <balloob@gmail.com>
This commit is contained in:
Franck Nijhof
2020-10-07 00:05:52 +02:00
committed by GitHub
parent cbb4324c84
commit ee914366a8
29 changed files with 349 additions and 282 deletions

View File

@@ -111,8 +111,8 @@ class TrackTemplateResult:
"""
template: Template
last_result: Union[str, None, TemplateError]
result: Union[str, TemplateError]
last_result: Any
result: Any
def threaded_listener_factory(async_factory: Callable[..., Any]) -> CALLBACK_TYPE: