Skip to content

Commit 2270883

Browse files
committed
Revert changes to expressions.py
1 parent bb777ea commit 2270883

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

pandas/core/computation/expressions.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -257,17 +257,10 @@ def where(cond, left_op, right_op, use_numexpr: bool = True):
257257
Whether to try to use numexpr.
258258
"""
259259
assert _where is not None
260-
string
261-
return (
262-
_where(cond, left_op, right_op)
263-
if use_numexpr
264-
else _where_standard(cond, left_op, right_op)
265-
)
266260
if use_numexpr:
267261
return _where(cond, left_op, right_op)
268262
else:
269263
return _where_standard(cond, left_op, right_op)
270-
main
271264

272265

273266
def set_test_mode(v: bool = True) -> None:

0 commit comments

Comments
 (0)