(self)
| 558 | raise TemplateNotFound(name) from e |
| 559 | |
| 560 | def list_templates(self) -> t.List[str]: |
| 561 | result = [] |
| 562 | for prefix, loader in self.mapping.items(): |
| 563 | for template in loader.list_templates(): |
| 564 | result.append(prefix + self.delimiter + template) |
| 565 | return result |
| 566 | |
| 567 | |
| 568 | class ChoiceLoader(BaseLoader): |
nothing calls this directly
no test coverage detected