Skip to content

Commit 160b3eb

Browse files
DOC: fix SA01 for pandas.errors.MergeError (#59805)
* DOC: fix SA01 for pandas.errors.MergeError * DOC: fix SA01 for pandas.errors.MergeError Co-authored-by: mroeschke <[email protected]> --------- Co-authored-by: mroeschke <[email protected]>
1 parent 122fc4c commit 160b3eb

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

ci/code_checks.sh

-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
191191
-i "pandas.errors.IntCastingNaNError SA01" \
192192
-i "pandas.errors.InvalidIndexError SA01" \
193193
-i "pandas.errors.InvalidVersion SA01" \
194-
-i "pandas.errors.MergeError SA01" \
195194
-i "pandas.errors.NullFrequencyError SA01" \
196195
-i "pandas.errors.NumExprClobberingError SA01" \
197196
-i "pandas.errors.NumbaUtilError SA01" \

pandas/errors/__init__.py

+5
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,11 @@ class MergeError(ValueError):
261261
262262
Subclass of ``ValueError``.
263263
264+
See Also
265+
--------
266+
DataFrame.join : For joining DataFrames on their indexes.
267+
merge : For merging two DataFrames on a common set of keys.
268+
264269
Examples
265270
--------
266271
>>> left = pd.DataFrame(

0 commit comments

Comments
 (0)