(file)
| 58 | return response |
| 59 | |
| 60 | def read_file_lines(file): |
| 61 | with open(file, 'r', errors='ignore', encoding='utf8') as f: |
| 62 | lines = f.readlines() |
| 63 | return lines |
| 64 | |
| 65 | def writelines_to_file(file, lines): |
| 66 | with open(file, 'w', encoding='utf8') as f: |
nothing calls this directly
no outgoing calls
no test coverage detected