Skip to content

Commit 863fea0

Browse files
DOC: improve conformation to PEP8
1 parent 2b604e9 commit 863fea0

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

doc/source/io.rst

+4-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
index=['x', 'y', 'z'])
2323
2424
25-
2625
===============================
2726
IO Tools (Text, CSV, HDF5, ...)
2827
===============================
@@ -1044,7 +1043,10 @@ DD/MM/YYYY instead. For convenience, a ``dayfirst`` keyword is provided:
10441043
.. ipython:: python
10451044
:suppress:
10461045
1047-
data = "date,value,cat\n1/6/2000,5,a\n2/6/2000,10,b\n3/6/2000,15,c"
1046+
data = ("date,value,cat\n
1047+
"1/6/2000,5,a\n"
1048+
"2/6/2000,10,b\n"
1049+
"3/6/2000,15,c")
10481050
with open('tmp.csv', 'w') as fh:
10491051
fh.write(data)
10501052

0 commit comments

Comments
 (0)