Skip to content

Commit ed88d5c

Browse files
committed
fix broken build
1 parent fcbe9a8 commit ed88d5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ Here's the sample code to write a dictionary to an xls file::
9393
>>> data.update({"Sheet 1": [[1, 2, 3], [4, 5, 6]]})
9494
>>> data.update({"Sheet 2": [[7, 8, 9], [10, 11, 12]]})
9595
>>> io = StringIO()
96-
>>> store_data(io, data)
96+
>>> save_data(io, data)
9797
>>> # do something with the io
9898
>>> # In reality, you might give it to your http response
9999
>>> # object for downloading

0 commit comments

Comments
 (0)