Skip to content

Commit 4bf00da

Browse files
committed
fix: fix regression in DataFrame.columns returning flat Index for MultiIndex
1 parent ea81d06 commit 4bf00da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bigframes/dataframe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ def dtypes(self) -> pandas.Series:
325325

326326
@property
327327
def columns(self) -> pandas.Index:
328-
return pandas.Index(self._block.column_labels)
328+
return self._block.column_labels
329329

330330
@columns.setter
331331
def columns(self, labels: pandas.Index):

0 commit comments

Comments
 (0)