(
self, environment: "Environment", template: str
)
| 551 | self.loaders = loaders |
| 552 | |
| 553 | def get_source( |
| 554 | self, environment: "Environment", template: str |
| 555 | ) -> t.Tuple[str, t.Optional[str], t.Optional[t.Callable[[], bool]]]: |
| 556 | for loader in self.loaders: |
| 557 | try: |
| 558 | return loader.get_source(environment, template) |
| 559 | except TemplateNotFound: |
| 560 | pass |
| 561 | raise TemplateNotFound(template) |
| 562 | |
| 563 | @internalcode |
| 564 | def load( |
nothing calls this directly
no test coverage detected