diff --git a/ci/code_checks.sh b/ci/code_checks.sh index ad12458ad6b0d..cabc25b5e0ba5 100755 --- a/ci/code_checks.sh +++ b/ci/code_checks.sh @@ -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" \ diff --git a/pandas/io/pytables.py b/pandas/io/pytables.py index 25808f5b4a132..d7fc71d037f2d 100644 --- a/pandas/io/pytables.py +++ b/pandas/io/pytables.py @@ -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"])