2024-04-28 16:46:55 -07:00

6 lines
174 B
Python

import pathlib
# Very simple method as placeholder for logic being tested.
def write_content_to_file(content: str, path: pathlib.Path) -> None:
path.write_text(content)