Skip to content

Commit c204a8d

Browse files
DOC: fix SA01 for pandas.errors.NumExprClobberingError
1 parent ee0902a commit c204a8d

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

ci/code_checks.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
113113
-i "pandas.errors.IntCastingNaNError SA01" \
114114
-i "pandas.errors.InvalidIndexError SA01" \
115115
-i "pandas.errors.NullFrequencyError SA01" \
116-
-i "pandas.errors.NumExprClobberingError SA01" \
117116
-i "pandas.errors.NumbaUtilError SA01" \
118117
-i "pandas.errors.OutOfBoundsTimedelta SA01" \
119118
-i "pandas.errors.PerformanceWarning SA01" \

pandas/errors/__init__.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -510,6 +510,11 @@ class NumExprClobberingError(NameError):
510510
to 'numexpr'. 'numexpr' is the default engine value for these methods if the
511511
numexpr package is installed.
512512
513+
See Also
514+
--------
515+
eval : Evaluate a Python expression as a string using various backends.
516+
DataFrame.query : Query the columns of a DataFrame with a boolean expression.
517+
513518
Examples
514519
--------
515520
>>> df = pd.DataFrame({"abs": [1, 1, 1]})

0 commit comments

Comments
 (0)