Skip to content

Commit 3a3aefe

Browse files
committed
Reformatted code
1 parent e6737f6 commit 3a3aefe

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
@@ -76,7 +76,6 @@ def _can_use_numexpr(op, op_str, a, b, dtype_check):
7676

7777
# required min elements (otherwise we are adding overhead)
7878
if np.prod(a.shape) > _MIN_ELEMENTS:
79-
8079
# check for dtype compatibility
8180
dtypes = set()
8281
for o in [a, b]:
@@ -181,7 +180,7 @@ def _has_bool_dtype(x):
181180

182181

183182
def _bool_arith_check(
184-
op_str, a, b, not_allowed=frozenset(("/", "//", "**")), unsupported=None
183+
op_str, a, b, not_allowed=frozenset(("/", "//", "**")), unsupported=None
185184
):
186185
if unsupported is None:
187186
unsupported = {"+": "|", "*": "&", "-": "^"}

0 commit comments

Comments
 (0)