__init__.py 229 B

1234567891011
  1. from typing import Any, List
  2. import pystache.loader # noqa: F401
  3. class Renderer:
  4. def __init__(self, missing_tags: str, search_dirs: List[str]):
  5. pass
  6. def render(self, template: Any, kwargs: Any):
  7. pass