Skip to content

Commit bb777ea

Browse files
committed
Revert "Update expressions.py"
This reverts commit 1f778dc.
1 parent 7a670d4 commit bb777ea

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/core/computation/expressions.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ 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-
260+
string
261261
return (
262262
_where(cond, left_op, right_op)
263263
if use_numexpr
@@ -267,6 +267,7 @@ def where(cond, left_op, right_op, use_numexpr: bool = True):
267267
return _where(cond, left_op, right_op)
268268
else:
269269
return _where_standard(cond, left_op, right_op)
270+
main
270271

271272

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

0 commit comments

Comments
 (0)