File tree Expand file tree Collapse file tree 3 files changed +13
-7
lines changed Expand file tree Collapse file tree 3 files changed +13
-7
lines changed Original file line number Diff line number Diff line change 1+ ## 1.0.8-dev1
2+
3+ * Enhancement: Optimized cells_to_html (codeflash)
4+
15## 1.0.7
26
37* Fix a hardcoded file extension causing confusion in the logs
Original file line number Diff line number Diff line change 1- __version__ = "1.0.7 " # pragma: no cover
1+ __version__ = "1.0.8-dev1 " # pragma: no cover
Original file line number Diff line number Diff line change @@ -706,12 +706,14 @@ def fill_cells(cells: List[dict]) -> List[dict]:
706706 for row in range (max_row + 1 ):
707707 for col in range (max_col + 1 ):
708708 if (row , col ) not in filled :
709- new_cells .append ({
710- "row_nums" : [row ],
711- "column_nums" : [col ],
712- "cell text" : "" ,
713- "column header" : row in header_rows ,
714- })
709+ new_cells .append (
710+ {
711+ "row_nums" : [row ],
712+ "column_nums" : [col ],
713+ "cell text" : "" ,
714+ "column header" : row in header_rows ,
715+ }
716+ )
715717 return new_cells
716718
717719
You can’t perform that action at this time.
0 commit comments