Skip to content

Commit

Permalink
DOC: fix SA01 for pandas.errors.NumExprClobberingError (pandas-dev#60401
Browse files Browse the repository at this point in the history
)
  • Loading branch information
tuhinsharma121 authored Nov 25, 2024
1 parent 00c2207 commit 39dcbb4
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 @@ -111,7 +111,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
-i "pandas.core.resample.Resampler.var SA01" \
-i "pandas.errors.IntCastingNaNError SA01" \
-i "pandas.errors.NullFrequencyError SA01" \
-i "pandas.errors.NumExprClobberingError SA01" \
-i "pandas.errors.NumbaUtilError SA01" \
-i "pandas.errors.PerformanceWarning SA01" \
-i "pandas.errors.UndefinedVariableError PR01,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 @@ -538,6 +538,11 @@ class NumExprClobberingError(NameError):
to 'numexpr'. 'numexpr' is the default engine value for these methods if the
numexpr package is installed.
See Also
--------
eval : Evaluate a Python expression as a string using various backends.
DataFrame.query : Query the columns of a DataFrame with a boolean expression.
Examples
--------
>>> df = pd.DataFrame({"abs": [1, 1, 1]})
Expand Down

0 comments on commit 39dcbb4

Please sign in to comment.