Skip to content

Commit

Permalink
ci: run pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleKing committed Aug 23, 2024
1 parent fd66c33 commit 3702b18
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mdformat_tables/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ def format_delimiter_cell(index: int, align: str) -> str:
f"{{:{al or '<'}{widths[i]}}}".format(text)
for i, (text, al) in enumerate(zip(rows[0], align[0]))
)
delimiter = join_row((format_delimiter_cell(i, al) for i, al in enumerate(align[0])))
delimiter = join_row(
(format_delimiter_cell(i, al) for i, al in enumerate(align[0]))
)
rows = [
join_row(
f"{{:{al or '<'}{widths[i]}}}".format(text)
Expand Down

0 comments on commit 3702b18

Please sign in to comment.