6 lines
174 B
Python
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)
|