(file, contents)
| 85 | f.writelines(lines) |
| 86 | |
| 87 | def writetext_to_file(file, contents): |
| 88 | with open(file, 'w', encoding='utf8') as f: |
| 89 | f.write(contents) |
| 90 | |
| 91 | def eval(args, subject, dev_df, test_df): |
| 92 | logfile = "MOSStestlogfile0512" |
nothing calls this directly
no outgoing calls
no test coverage detected