Skip to content

Commit

Permalink
Remove type of Any for cell_content
Browse files Browse the repository at this point in the history
  • Loading branch information
rich-iannone committed Oct 16, 2024
1 parent 8f4f490 commit f6800b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion great_tables/_utils_render_latex.py
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ def create_body_component_l(data: GTData, width_dict: WidthDict) -> str:

# Create a body row
for colinfo in column_vars:
cell_content: Any = _get_cell(tbl_data, i, colinfo.var)
cell_content = _get_cell(tbl_data, i, colinfo.var)
cell_str: str = str(cell_content)

Check warning on line 608 in great_tables/_utils_render_latex.py

View check run for this annotation

Codecov / codecov/patch

great_tables/_utils_render_latex.py#L606-L608

Added lines #L606 - L608 were not covered by tests

body_cells.append(cell_str)

Check warning on line 610 in great_tables/_utils_render_latex.py

View check run for this annotation

Codecov / codecov/patch

great_tables/_utils_render_latex.py#L610

Added line #L610 was not covered by tests
Expand Down

0 comments on commit f6800b9

Please sign in to comment.