(self, *args, **kwargs)
| 164 | |
| 165 | class PPTCrew_wo_HTML(PPTCrew): |
| 166 | def __init__(self, *args, **kwargs): |
| 167 | super().__init__(*args, **kwargs) |
| 168 | monkeypatch_render() |
| 169 | |
| 170 | def _hire_staffs(self, record_cost: bool, **kwargs) -> dict[str, Role]: |
| 171 | new_coder = "coder_wo_html" |
nothing calls this directly
no test coverage detected