Skip to content

Commit 8a1de7b

Browse files
tuhinsharma121gmcrocetti
authored andcommitted
DOC: fix SA01 for pandas.errors.AttributeConflictWarning (pandas-dev#60367)
* DOC: fix SA01 for pandas.errors.AttributeConflictWarning * DOC: fix SA01 for pandas.errors.AttributeConflictWarning
1 parent b596c7a commit 8a1de7b

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

ci/code_checks.sh

-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
114114
-i "pandas.core.resample.Resampler.std SA01" \
115115
-i "pandas.core.resample.Resampler.transform PR01,RT03,SA01" \
116116
-i "pandas.core.resample.Resampler.var SA01" \
117-
-i "pandas.errors.AttributeConflictWarning SA01" \
118117
-i "pandas.errors.ChainedAssignmentError SA01" \
119118
-i "pandas.errors.DuplicateLabelError SA01" \
120119
-i "pandas.errors.IntCastingNaNError SA01" \

pandas/errors/__init__.py

+6
Original file line numberDiff line numberDiff line change
@@ -672,6 +672,12 @@ class AttributeConflictWarning(Warning):
672672
name than the existing index on an HDFStore or attempting to append an index with a
673673
different frequency than the existing index on an HDFStore.
674674
675+
See Also
676+
--------
677+
HDFStore : Dict-like IO interface for storing pandas objects in PyTables.
678+
DataFrame.to_hdf : Write the contained data to an HDF5 file using HDFStore.
679+
read_hdf : Read from an HDF5 file into a DataFrame.
680+
675681
Examples
676682
--------
677683
>>> idx1 = pd.Index(["a", "b"], name="name1")

0 commit comments

Comments
 (0)