From 20f51d0bc1b983170587aaf61012b1135b6d1d08 Mon Sep 17 00:00:00 2001 From: Daniel Date: Mon, 28 Oct 2019 16:45:26 +0100 Subject: [PATCH] Update doc, apply requested changes in headers flag doc. --- docs/tutorial.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/tutorial.rst b/docs/tutorial.rst index 345ff88..2be7210 100644 --- a/docs/tutorial.rst +++ b/docs/tutorial.rst @@ -112,9 +112,10 @@ This detects what sort of data is being passed in, and uses an appropriate forma .. admonition:: - When the format is :class:`csv `, :class:`tsv `, :class:`dbf `, :class:`xls ` or :class:`xlsx `, and this does not have headers, the import should be done as follows :: + When the format is :class:`csv `, :class:`tsv `, :class:`dbf `, :class:`xls ` or :class:`xlsx `, and the data source does not have headers, the import should be done as follows :: imported_data = Dataset().load(open('data.csv').read(), headers=False) + -------------- Exporting Data --------------