File tree 3 files changed +3
-2
lines changed
3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -876,11 +876,9 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
876
876
pandas.plotting.parallel_coordinates\
877
877
pandas.plotting.radviz\
878
878
pandas.plotting.table\
879
- pandas.read_feather\
880
879
pandas.read_orc\
881
880
pandas.read_sas\
882
881
pandas.read_spss\
883
- pandas.read_sql_query\
884
882
pandas.read_stata\
885
883
pandas.set_eng_float_format\
886
884
pandas.timedelta_range\
Original file line number Diff line number Diff line change @@ -104,6 +104,7 @@ def read_feather(
104
104
Returns
105
105
-------
106
106
type of object stored in file
107
+ DataFrame object stored in the file.
107
108
108
109
Examples
109
110
--------
Original file line number Diff line number Diff line change @@ -460,6 +460,8 @@ def read_sql_query(
460
460
Returns
461
461
-------
462
462
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.
463
465
464
466
See Also
465
467
--------
You can’t perform that action at this time.
0 commit comments