By default, to_csv will always write a header. It doesn't make sense to let users separately set the headers parameter on the import; we'll always know what it is. This also fixes a problem with automatic header detection in Civis Platform not always recognizing a header row properly.
I was able to reproduce @elsander 's error from #263 with the original dataset. The change in this PR fixes it, by being explicit about the presence of a header row.
By default,
to_csv
will always write a header. It doesn't make sense to let users separately set theheaders
parameter on the import; we'll always know what it is. This also fixes a problem with automatic header detection in Civis Platform not always recognizing a header row properly.I was able to reproduce @elsander 's error from #263 with the original dataset. The change in this PR fixes it, by being explicit about the presence of a header row.
Closes #263 .