conftest_1.py 158 B

12345
  1. def create_file(path: str, content: str):
  2. """Create txt file with specific content"""
  3. with open(f"{path}", "w") as file:
  4. file.write(content)