Skip to content

Commit

Permalink
Move away from f-string when not necessary
Browse files Browse the repository at this point in the history
  • Loading branch information
rich-iannone committed Oct 17, 2024
1 parent f9f1a8a commit 6835cd5
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 @@ -563,7 +563,7 @@ def create_columns_component_l(data: GTData, width_dict: WidthDict) -> str:

# Get the number of columns to span nothing
span = group_spans[j][0]
spanner_labs.append(f" & " * span)
spanner_labs.append(" & " * span)

Check warning on line 566 in great_tables/_utils_render_latex.py

View check run for this annotation

Codecov / codecov/patch

great_tables/_utils_render_latex.py#L565-L566

Added lines #L565 - L566 were not covered by tests

elif level_i_spanners[j] is not None:

Check warning on line 568 in great_tables/_utils_render_latex.py

View check run for this annotation

Codecov / codecov/patch

great_tables/_utils_render_latex.py#L568

Added line #L568 was not covered by tests

Expand Down

0 comments on commit 6835cd5

Please sign in to comment.