Skip to content

Commit 19e2c4f

Browse files
committed
refactor(display): use CSS classes in HTML tables
1 parent f20cde5 commit 19e2c4f

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

bigframes/display/html.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,6 @@ def _render_table_body(dataframe: pd.DataFrame) -> str:
8585
dtype = dataframe.dtypes.loc[col_name] # type: ignore
8686
align = "right" if _is_dtype_numeric(dtype) else "left"
8787

88-
# TODO(b/438181139): Consider semi-exploding ARRAY/STRUCT columns
89-
# into multiple rows/columns like the BQ UI does.
9088
if pandas.api.types.is_scalar(value) and pd.isna(value):
9189
body_parts.append(
9290
f' <td class="cell-align-{align}">'

0 commit comments

Comments
 (0)