Skip to content

Commit

Permalink
DOC: fix SA01 for pandas.errors.MergeError (pandas-dev#59805)
Browse files Browse the repository at this point in the history
* DOC: fix SA01 for pandas.errors.MergeError

* DOC: fix SA01 for pandas.errors.MergeError

Co-authored-by: mroeschke <mroeschke@users.noreply.github.com>

---------

Co-authored-by: mroeschke <mroeschke@users.noreply.github.com>
  • Loading branch information
tuhinsharma121 and mroeschke authored Sep 15, 2024
1 parent 122fc4c commit 160b3eb
Show file tree
Hide file tree
Showing 2 changed files with 5 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 @@ -191,7 +191,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
-i "pandas.errors.IntCastingNaNError SA01" \
-i "pandas.errors.InvalidIndexError SA01" \
-i "pandas.errors.InvalidVersion SA01" \
-i "pandas.errors.MergeError SA01" \
-i "pandas.errors.NullFrequencyError SA01" \
-i "pandas.errors.NumExprClobberingError SA01" \
-i "pandas.errors.NumbaUtilError SA01" \
Expand Down
5 changes: 5 additions & 0 deletions pandas/errors/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,11 @@ class MergeError(ValueError):
Subclass of ``ValueError``.
See Also
--------
DataFrame.join : For joining DataFrames on their indexes.
merge : For merging two DataFrames on a common set of keys.
Examples
--------
>>> left = pd.DataFrame(
Expand Down

0 comments on commit 160b3eb

Please sign in to comment.