Skip to content

Commit f5df4c0

Browse files
committed
DOC: None in docstrings
1 parent 35f4d02 commit f5df4c0

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

pandas/io/pytables.py

+9-10
Original file line numberDiff line numberDiff line change
@@ -807,19 +807,19 @@ def select(
807807
----------
808808
key : str
809809
Object being retrieved from file.
810-
where : list, default None
810+
where : list or None
811811
List of Term (or convertible) objects, optional.
812-
start : int, default None
812+
start : int or None
813813
Row number to start selection.
814814
stop : int, default None
815815
Row number to stop selection.
816-
columns : list, default None
816+
columns : list or None
817817
A list of columns that if not None, will limit the return columns.
818-
iterator : bool, default False
818+
iterator : bool or False
819819
Returns an iterator.
820-
chunksize : int, default None
820+
chunksize : int or None
821821
Number or rows to include in iteration, return an iterator.
822-
auto_close : bool, default False
822+
auto_close : bool or False
823823
Should automatically close the store when finished.
824824
825825
Returns
@@ -1083,11 +1083,10 @@ def put(
10831083
worse but allow more flexible operations like searching / selecting
10841084
subsets of the data.
10851085
append : bool, default False
1086-
This will force Table format, append the input data to the
1087-
existing.
1086+
This will force Table format, append the input data to the existing.
10881087
data_columns : list, default None
1089-
List of columns to create as data columns, or True to
1090-
use all columns. See `here
1088+
List of columns to create as data columns, or True to use all columns.
1089+
See `here
10911090
<https://pandas.pydata.org/pandas-docs/stable/user_guide/io.html#query-via-data-columns>`__.
10921091
encoding : str, default None
10931092
Provide an encoding for strings.

0 commit comments

Comments
 (0)