Skip to content

Commit 1f778dc

Browse files
author
UV
authored
Update expressions.py
1 parent 48dc7fd commit 1f778dc

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pandas/core/computation/expressions.py

+1-2
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-
string
260+
261261
return (
262262
_where(cond, left_op, right_op)
263263
if use_numexpr
@@ -267,7 +267,6 @@ 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
271270

272271

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

0 commit comments

Comments
 (0)