(self, base_output_path: Path)
| 30 | base_output_path: Path |
| 31 | |
| 32 | def __init__(self, base_output_path: Path) -> None: |
| 33 | self.all_classes = {} |
| 34 | self.base_output_path = base_output_path |
| 35 | |
| 36 | def render_template(self, template_path: Path, output_path: Path, **data): |
| 37 | # jinja expects a string, representing a relative path with forward slashes |
nothing calls this directly
no outgoing calls
no test coverage detected