(df, fil, *, depend_on=None, **kwargs)
| 756 | |
| 757 | |
| 758 | def _write_csv(df, fil, *, depend_on=None, **kwargs): |
| 759 | with fil as f: |
| 760 | df.to_csv(f, **kwargs) |
| 761 | return os.path.normpath(fil.path) |
| 762 | |
| 763 | |
| 764 | def to_csv( |
nothing calls this directly
no test coverage detected
searching dependent graphs…