Skip to content

Commit

Permalink
DOC: fix SA01 for pandas.errors.AttributeConflictWarning (pandas-dev#…
Browse files Browse the repository at this point in the history
…60367)

* DOC: fix SA01 for pandas.errors.AttributeConflictWarning

* DOC: fix SA01 for pandas.errors.AttributeConflictWarning
  • Loading branch information
tuhinsharma121 authored Nov 20, 2024
1 parent 0e20990 commit ff53ca1
Show file tree
Hide file tree
Showing 2 changed files with 6 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 @@ -114,7 +114,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
-i "pandas.core.resample.Resampler.std SA01" \
-i "pandas.core.resample.Resampler.transform PR01,RT03,SA01" \
-i "pandas.core.resample.Resampler.var SA01" \
-i "pandas.errors.AttributeConflictWarning SA01" \
-i "pandas.errors.ChainedAssignmentError SA01" \
-i "pandas.errors.DuplicateLabelError SA01" \
-i "pandas.errors.IntCastingNaNError SA01" \
Expand Down
6 changes: 6 additions & 0 deletions pandas/errors/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -672,6 +672,12 @@ class AttributeConflictWarning(Warning):
name than the existing index on an HDFStore or attempting to append an index with a
different frequency than the existing index on an HDFStore.
See Also
--------
HDFStore : Dict-like IO interface for storing pandas objects in PyTables.
DataFrame.to_hdf : Write the contained data to an HDF5 file using HDFStore.
read_hdf : Read from an HDF5 file into a DataFrame.
Examples
--------
>>> idx1 = pd.Index(["a", "b"], name="name1")
Expand Down

0 comments on commit ff53ca1

Please sign in to comment.