From 7e3376c1e6e74dcae507a63dae9090af3fef6a7f Mon Sep 17 00:00:00 2001 From: Tuhin Sharma Date: Sun, 21 Apr 2024 23:41:52 +0530 Subject: [PATCH 1/2] DOC: added SA01 to HDFStore.groups --- pandas/io/pytables.py | 4 ++++ 1 file changed, 4 insertions(+) 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"]) From ae604ae479175940c424d8c6e4dcca08be64c296 Mon Sep 17 00:00:00 2001 From: Tuhin Sharma Date: Sun, 21 Apr 2024 23:42:30 +0530 Subject: [PATCH 2/2] DOC: removed HDFStore.groups --- ci/code_checks.sh | 1 - 1 file changed, 1 deletion(-) 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" \