Skip to content

Commit 27cc657

Browse files
author
duozhang
committed
adjusted the indentation of doc of io.sql.read_frame
1 parent 1fc1ba8 commit 27cc657

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/io/sql.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,8 @@ def read_frame(sql, con, index_col=None, coerce_float=True):
140140
index_col: string, optional
141141
column name to use for the returned DataFrame object.
142142
coerce_float : boolean, default True
143-
Attempt to convert values to non-string, non-numeric objects (like
144-
decimal.Decimal) to floating point, useful for SQL result sets
143+
Attempt to convert values to non-string, non-numeric objects (like
144+
decimal.Decimal) to floating point, useful for SQL result sets
145145
"""
146146
cur = execute(sql, con)
147147
rows = _safe_fetch(cur)

0 commit comments

Comments
 (0)