Skip to content

Commit 1126244

Browse files
committed
even more
1 parent 0a5a935 commit 1126244

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bigframes/core/blocks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2471,7 +2471,7 @@ def _align_series_block_axis_1(
24712471
def _align_pd_series_axis_1(
24722472
self, other: pd.Series, how: str
24732473
) -> Tuple[Block, pd.Index, Sequence[Tuple[ex.RefOrConstant, ex.RefOrConstant]]]:
2474-
if self.column_labels.astype("object").equals(other.index.astype("object")):
2474+
if self.column_labels.equals(other.index):
24752475
columns, lcol_indexer, rcol_indexer = self.column_labels, None, None
24762476
else:
24772477
if not (self.column_labels.is_unique and other.index.is_unique):

0 commit comments

Comments
 (0)