(file)
| 68 | return answer |
| 69 | |
| 70 | def read_file_lines(file): |
| 71 | with open(file, 'r', errors='ignore', encoding='utf8') as f: |
| 72 | lines = f.readlines() |
| 73 | return lines |
| 74 | |
| 75 | def writelines_to_file(file, lines): |
| 76 | with open(file, 'w', encoding='utf8') as f: |
nothing calls this directly
no outgoing calls
no test coverage detected