creates a sample file at some path with some content
(filepath: str, content: str)
| 7 | |
| 8 | |
| 9 | def _create_sample_file(filepath: str, content: str): |
| 10 | """creates a sample file at some path with some content""" |
| 11 | with open(filepath, "w", encoding="utf-8") as f: |
| 12 | f.write(content) |
| 13 | |
| 14 | |
| 15 | def _delete_sample_file(filepath: str): |
no outgoing calls
no test coverage detected