Skip to content

Commit

Permalink
TLDR-851 fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
oksidgy committed Dec 16, 2024
1 parent d5b1cc0 commit 75db1a7
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,7 @@ def __get_matrix_table_from_tree(self, table_tree: TableTree) -> ScanTable:
matrix.append(cpy_line)
line.clear()

cell_ = Cell(bbox=cell.cell_box,
id_con=cell.id_contours,
lines=cell.lines,
contour_coord=cell.cell_box)
cell_ = Cell(bbox=cell.cell_box, id_con=cell.id_contours, lines=cell.lines, contour_coord=cell.cell_box)
line.append(cell_)
matrix.append(line)

Expand Down

0 comments on commit 75db1a7

Please sign in to comment.