(self, src: Path, dest: Path, **kw: Any)
| 573 | ) |
| 574 | |
| 575 | def _generate_template(self, src: Path, dest: Path, **kw: Any) -> None: |
| 576 | with util.status( |
| 577 | f"Generating {dest.absolute()}", **self.messaging_opts |
| 578 | ): |
| 579 | util.template_to_file(src, dest, self.output_encoding, **kw) |
| 580 | |
| 581 | def _copy_file(self, src: Path, dest: Path) -> None: |
| 582 | with util.status( |
no outgoing calls
no test coverage detected