Skip to content

Commit

Permalink
Dead code for coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
masaccio committed Jun 17, 2024
1 parent f0fbf3d commit 7b6f668
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/numbers_parser/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -854,10 +854,7 @@ def recalculate_column_headers(self, table_id: int, data: List):

for col, cells in enumerate(col_data):
num_rows = len(cells) - sum([isinstance(x, MergedCell) for x in cells])
if table_id in self._col_widths and col in self._col_widths[table_id]:
width = self._col_widths[table_id][col]
else:
width = current_column_widths[col]
width = current_column_widths[col]
header = TSTArchives.HeaderStorageBucket.Header(
index=col,
numberOfCells=num_rows,
Expand Down

0 comments on commit 7b6f668

Please sign in to comment.