Skip to content

Commit 3ef996e

Browse files
committed
Added comment for _read_lines()
1 parent 46729b6 commit 3ef996e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pandas_datareader/moex.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,9 @@ def _read_url_as_String(self, url, params=None):
160160
out = text
161161
return out
162162

163-
def _read_lines(self, out):
164-
rs = read_csv(out, index_col='TRADEDATE', parse_dates=True, sep=';',
163+
def _read_lines(self, input):
164+
""" return pandas DataFrame from input """
165+
rs = read_csv(input, index_col='TRADEDATE', parse_dates=True, sep=';',
165166
na_values=('-', 'null'))
166167
# Get rid of unicode characters in index name.
167168
try:

0 commit comments

Comments
 (0)