(project_path: Path, dest: Path, content: str)
| 242 | |
| 243 | |
| 244 | def _write_shared_text(project_path: Path, dest: Path, content: str) -> None: |
| 245 | _write_shared_bytes(project_path, dest, content.encode("utf-8")) |
| 246 | |
| 247 | |
| 248 | def _write_shared_bytes( |
no test coverage detected