(path: Path, articles: list)
| 78 | |
| 79 | |
| 80 | def _dump_articles(path: Path, articles: list): |
| 81 | with path.open("w") as f: |
| 82 | f.write("\n".join(articles)) |
| 83 | |
| 84 | |
| 85 | ARTICLES = [" Sam ate lunch today", "Sams lunch ingredients"] |
no outgoing calls
no test coverage detected