(fpath: Path, content: str)
| 242 | |
| 243 | |
| 244 | def _write(fpath: Path, content: str): |
| 245 | with fpath.open("w", encoding="utf-8") as fp: |
| 246 | fp.write(content) |
| 247 | print(f"Wrote {fpath}") |
| 248 | |
| 249 | |
| 250 | def write_import_json(data: Dict[str, Any], path: str): |
no test coverage detected