__init__.py 198 B

1234567
  1. from typing import Any, List
  2. import pystache.loader
  3. class Renderer:
  4. def __init__(self, missing_tags: str, search_dirs: List[str]): pass
  5. def render(self, template: Any, kwargs: dict): pass