Skip to content

Commit 0c49cdc

Browse files
author
KrishnaSai2020
committed
doctest fix for pandas-dev#42671 (pep 8 changes)
1 parent 1747f73 commit 0c49cdc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pandas/io/stata.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -162,12 +162,12 @@
162162
--------
163163
Read a Stata dta file:
164164
165-
>>> df = pd.read_stata('docs_example_files/read_stata_example.dta')
165+
>>> df = pd.read_stata('docs_example_files/read_stata_example.dta')
166166
167167
Read a Stata dta file in 10,000 line chunks:
168168
169-
>>> itr = pd.read_stata('docs_examples/read_stata_example.dta', chunksize=10000)
170-
>>> for chunk in itr:
169+
>>> itr = pd.read_stata('docs_examples/read_stata_example.dta', chunksize=10000)
170+
>>> for chunk in itr:
171171
... pass # do_something(chunk)
172172
"""
173173

0 commit comments

Comments
 (0)