(self)
| 408 | raise TemplateNotFound(name) |
| 409 | |
| 410 | def list_templates(self): |
| 411 | found = set() |
| 412 | for loader in self.loaders: |
| 413 | found.update(loader.list_templates()) |
| 414 | return sorted(found) |
| 415 | |
| 416 | |
| 417 | class _TemplateModule(ModuleType): |
nothing calls this directly
no test coverage detected