Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pandas/core/computation/expressions.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,7 @@ def where(cond, a, b, use_numexpr=True):
use_numexpr : bool, default True
Whether to try to use numexpr.
"""
assert _where is not None
return _where(cond, a, b) if use_numexpr else _where_standard(cond, a, b)


Expand Down
3 changes: 0 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -154,9 +154,6 @@ check_untyped_defs=False
[mypy-pandas.core.computation.expr]
check_untyped_defs=False

[mypy-pandas.core.computation.expressions]
check_untyped_defs=False

[mypy-pandas.core.computation.ops]
check_untyped_defs=False

Expand Down