Contexts can contain Any data (#192)

This commit is contained in:
Anthony Ricaud
2019-09-28 19:38:04 +01:00
committed by Nikita Sobolev
parent be3fc259d5
commit acc3ca4205

View File

@@ -19,7 +19,7 @@ class SimpleTemplateResponse(HttpResponse):
status_code: int
rendering_attrs: Any = ...
template_name: Union[List[str], Template, str] = ...
context_data: Optional[Dict[str, str]] = ...
context_data: Optional[Dict[str, Any]] = ...
using: Optional[str] = ...
def __init__(
self,