jonathanpeppers / inclusive-code-reviews-ml

Machine learning for code reviews!
MIT License
14 stars 6 forks source link

Headless csv files fail undetected #41

Closed tj-devel709 closed 2 years ago

tj-devel709 commented 2 years ago

While breaking up the potentialbad files, I split the file and did not re-add the header line of "Body". This caused the files to not load and there was no message that stated there was an issue.

We should do something about this.

jonathanpeppers commented 2 years ago

I think what is happening is the CsvHelper library is expecting the first row to contain a header (column information). If the header is missing, it thinks whatever is in the first row are column names...

So what you end up with is a list of GitHubComment with null values?