Skip to content

Commit

Permalink
DOC: Enforce Numpy Docstring Validation for pandas.HDFStore.groups (p…
Browse files Browse the repository at this point in the history
…andas-dev#58357)

* DOC: added SA01 to HDFStore.groups

* DOC: removed HDFStore.groups
  • Loading branch information
tuhinsharma121 authored and pmhatre1 committed May 7, 2024
1 parent d25ba0b commit 53421e8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 0 additions & 1 deletion ci/code_checks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
-i "pandas.DatetimeTZDtype.tz SA01" \
-i "pandas.DatetimeTZDtype.unit SA01" \
-i "pandas.Grouper PR02" \
-i "pandas.HDFStore.groups SA01" \
-i "pandas.HDFStore.info RT03,SA01" \
-i "pandas.HDFStore.keys SA01" \
-i "pandas.HDFStore.put PR01,SA01" \
Expand Down
4 changes: 4 additions & 0 deletions pandas/io/pytables.py
Original file line number Diff line number Diff line change
Expand Up @@ -1504,6 +1504,10 @@ def groups(self) -> list:
list
List of objects.
See Also
--------
HDFStore.get_node : Returns the node with the key.
Examples
--------
>>> df = pd.DataFrame([[1, 2], [3, 4]], columns=["A", "B"])
Expand Down

0 comments on commit 53421e8

Please sign in to comment.