Skip to content

Commit 57dc1cf

Browse files
committed
fix mypy
1 parent bdcfabc commit 57dc1cf

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
@@ -1929,7 +1929,7 @@ def to_pandas(self) -> pd.Index:
19291929
df = expr.session._rows_to_dataframe(results, dtypes)
19301930
df = df.set_index(index_columns)
19311931
index = df.index
1932-
index.names = list(self._block._index_labels)
1932+
index.names = list(self._block._index_labels) # type:ignore
19331933
return index
19341934

19351935
def resolve_level(self, level: LevelsType) -> typing.Sequence[str]:

0 commit comments

Comments
 (0)