Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Explicitly use Python engine for pandas (#435)
Pandas was giving the following warning: ``` /Users/cthoyt/dev/sssom-py/src/sssom/parsers.py:147: ParserWarning: Falling back to the 'python' engine because the 'c' engine does not support sep=None with delim_whitespace=False; you can avoid this warning by specifying engine='python'. df = pd.read_csv(table_stream, sep=sep, dtype=str) ``` This PR explicitly specifies the engine to be "python" as suggested. Another alternative would be to set the separator to tab by default, since I don't think we allow SSSOM in CSV (or at least we shouldn't :p)
- Loading branch information