Skip to content

Commit

Permalink
fix(python): raw HTML output alignment was incorrect for dtype in hea…
Browse files Browse the repository at this point in the history
…der (pola-rs#12422)
  • Loading branch information
alexander-beedie authored Nov 14, 2023
1 parent ce0e543 commit 13f2a7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions py-polars/polars/dataframe/_html.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,8 @@ class NotebookFormatter(HTMLFormatter):
def write_style(self) -> None:
style = """\
<style>
.dataframe > thead > tr > th,
.dataframe > tbody > tr > td {
.dataframe > thead > tr,
.dataframe > tbody > tr {
text-align: right;
white-space: pre-wrap;
}
Expand Down

0 comments on commit 13f2a7b

Please sign in to comment.