Skip to content

Commit ccd65d3

Browse files
committed
relocate comment
1 parent a5832db commit ccd65d3

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
@@ -521,9 +521,9 @@ def info(
521521
if self._block.has_index:
522522
index_type = "MultiIndex" if self.index.nlevels > 1 else "Index"
523523

524-
# These accessses are kind of expensive, maybe should try to skip?
525524
index_stats = f"{n_rows} entries"
526525
if n_rows > 0:
526+
# These accessses are kind of expensive, maybe should try to skip?
527527
first_indice = self.index[0]
528528
last_indice = self.index[-1]
529529
index_stats += f", {first_indice} to {last_indice}"

0 commit comments

Comments
 (0)