Skip to content

Commit 1fe1bc2

Browse files
committed
pep8
1 parent bf1f662 commit 1fe1bc2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/indexes/base.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3304,7 +3304,8 @@ def _evaluate_compare(self, other):
33043304
if is_object_dtype(self) and self.nlevels == 1:
33053305
# don't pass MultiIndex
33063306
with np.errstate(all='ignore'):
3307-
result = _comp_method_OBJECT_ARRAY(op, self.values, other)
3307+
result = _comp_method_OBJECT_ARRAY(
3308+
op, self.values, other)
33083309
else:
33093310
with np.errstate(all='ignore'):
33103311
result = op(self.values, np.asarray(other))

0 commit comments

Comments
 (0)