(self, params)
| 12 | app_dirname = "template_strings" |
| 13 | |
| 14 | def __init__(self, params): |
| 15 | params = params.copy() |
| 16 | options = params.pop("OPTIONS").copy() |
| 17 | if options: |
| 18 | raise ImproperlyConfigured("Unknown options: {}".format(", ".join(options))) |
| 19 | super().__init__(params) |
| 20 | |
| 21 | def from_string(self, template_code): |
| 22 | return Template(template_code) |
nothing calls this directly
no test coverage detected