(self, root_directory: str, **kwargs: Any)
| 454 | """A template loader that loads from a single root directory.""" |
| 455 | |
| 456 | def __init__(self, root_directory: str, **kwargs: Any) -> None: |
| 457 | super().__init__(**kwargs) |
| 458 | self.root = os.path.abspath(root_directory) |
| 459 | |
| 460 | def resolve_path(self, name: str, parent_path: Optional[str] = None) -> str: |
| 461 | if ( |