We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d40a3ec commit f8954f4Copy full SHA for f8954f4
pandas/io/formats/format.py
@@ -1183,8 +1183,6 @@ def _column_header():
1183
1184
if isinstance(self.columns, MultiIndex):
1185
template = 'colspan="%d" halign="left"'
1186
- if 'pandas_notebook' in self.classes:
1187
- template += ' class="pandas_notebook"'
1188
1189
if self.fmt.sparsify:
1190
# GH3547
@@ -1254,8 +1252,6 @@ def _column_header():
1254
1252
if records[i] > 1:
1255
1253
tags[j] = template % records[i]
1256
else:
1257
1258
- tags[j] = 'class="pandas_notebook"'
1259
continue
1260
j += 1
1261
row.append(v)
0 commit comments