Gets the path to a constant temporary file
()
| 12 | |
| 13 | |
| 14 | def get_temp_file_path(): |
| 15 | """Gets the path to a constant temporary file""" |
| 16 | return join(get_root_dir(), str(uuid4())) |
| 17 | |
| 18 | |
| 19 | def save_text_to_file(text, file_path): |
no test coverage detected