Skip to content

Commit 09bd13e

Browse files
DOC: RT03 fix for read_sql_query, read_feather (#57649)
* DOC: RT03 fix for read_sql_query, read_feather * Update pandas/io/feather_format.py Co-authored-by: Matthew Roeschke <[email protected]> --------- Co-authored-by: Matthew Roeschke <[email protected]>
1 parent aabc35a commit 09bd13e

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

ci/code_checks.sh

-2
Original file line numberDiff line numberDiff line change
@@ -876,11 +876,9 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
876876
pandas.plotting.parallel_coordinates\
877877
pandas.plotting.radviz\
878878
pandas.plotting.table\
879-
pandas.read_feather\
880879
pandas.read_orc\
881880
pandas.read_sas\
882881
pandas.read_spss\
883-
pandas.read_sql_query\
884882
pandas.read_stata\
885883
pandas.set_eng_float_format\
886884
pandas.timedelta_range\

pandas/io/feather_format.py

+1
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ def read_feather(
104104
Returns
105105
-------
106106
type of object stored in file
107+
DataFrame object stored in the file.
107108
108109
Examples
109110
--------

pandas/io/sql.py

+2
Original file line numberDiff line numberDiff line change
@@ -460,6 +460,8 @@ def read_sql_query(
460460
Returns
461461
-------
462462
DataFrame or Iterator[DataFrame]
463+
Returns a DataFrame object that contains the result set of the
464+
executed SQL query, in relation to the specified database connection.
463465
464466
See Also
465467
--------

0 commit comments

Comments
 (0)