forked from orbit-oss/flask
Fix typing of jinja decorators (#4109)
This commit is contained in:
parent
a960236117
commit
8e589daaf2
2 changed files with 5 additions and 3 deletions
|
|
@ -40,8 +40,8 @@ BeforeRequestCallable = t.Callable[[], t.Optional[ResponseReturnValue]]
|
|||
ErrorHandlerCallable = t.Callable[[Exception], ResponseReturnValue]
|
||||
TeardownCallable = t.Callable[[t.Optional[BaseException]], None]
|
||||
TemplateContextProcessorCallable = t.Callable[[], t.Dict[str, t.Any]]
|
||||
TemplateFilterCallable = t.Callable[[t.Any], str]
|
||||
TemplateGlobalCallable = t.Callable[[], t.Any]
|
||||
TemplateTestCallable = t.Callable[[t.Any], bool]
|
||||
TemplateFilterCallable = t.Callable[..., t.Any]
|
||||
TemplateGlobalCallable = t.Callable[..., t.Any]
|
||||
TemplateTestCallable = t.Callable[..., bool]
|
||||
URLDefaultCallable = t.Callable[[str, dict], None]
|
||||
URLValuePreprocessorCallable = t.Callable[[t.Optional[str], t.Optional[dict]], None]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue