(self, dict: Dict[str, str], **kwargs: Any)
| 482 | """A template loader that loads from a dictionary.""" |
| 483 | |
| 484 | def __init__(self, dict: Dict[str, str], **kwargs: Any) -> None: |
| 485 | super().__init__(**kwargs) |
| 486 | self.dict = dict |
| 487 | |
| 488 | def resolve_path(self, name: str, parent_path: Optional[str] = None) -> str: |
| 489 | if ( |