(file, contents)
| 112 | f.writelines(lines) |
| 113 | |
| 114 | def writetext_to_file(file, contents): |
| 115 | with open(file, 'w', encoding='utf8') as f: |
| 116 | f.write(contents) |
| 117 | |
| 118 | def eval(args, subject, dev_df, test_df): |
| 119 | logfile = "bloomztestlogfile0512" |
nothing calls this directly
no outgoing calls
no test coverage detected