Skip to content

Commit 53421e8

Browse files
tuhinsharma121pmhatre1
authored andcommitted
DOC: Enforce Numpy Docstring Validation for pandas.HDFStore.groups (pandas-dev#58357)
* DOC: added SA01 to HDFStore.groups * DOC: removed HDFStore.groups
1 parent d25ba0b commit 53421e8

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

ci/code_checks.sh

-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
131131
-i "pandas.DatetimeTZDtype.tz SA01" \
132132
-i "pandas.DatetimeTZDtype.unit SA01" \
133133
-i "pandas.Grouper PR02" \
134-
-i "pandas.HDFStore.groups SA01" \
135134
-i "pandas.HDFStore.info RT03,SA01" \
136135
-i "pandas.HDFStore.keys SA01" \
137136
-i "pandas.HDFStore.put PR01,SA01" \

pandas/io/pytables.py

+4
Original file line numberDiff line numberDiff line change
@@ -1504,6 +1504,10 @@ def groups(self) -> list:
15041504
list
15051505
List of objects.
15061506
1507+
See Also
1508+
--------
1509+
HDFStore.get_node : Returns the node with the key.
1510+
15071511
Examples
15081512
--------
15091513
>>> df = pd.DataFrame([[1, 2], [3, 4]], columns=["A", "B"])

0 commit comments

Comments
 (0)