Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Commit f9bac38

Browse files
committed
fix mypy
1 parent 7d48abd commit f9bac38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bigframes/display/anywidget.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def __init__(self, dataframe: bigframes.dataframe.DataFrame):
111111
# TODO(b/463754889): Support non-string column labels for sorting.
112112
if all(isinstance(col, str) for col in dataframe.columns):
113113
self.orderable_columns = [
114-
col_name
114+
str(col_name)
115115
for col_name, dtype in dataframe.dtypes.items()
116116
if dtypes.is_orderable(dtype)
117117
]

0 commit comments

Comments
 (0)