Skip to content

Commit

Permalink
refactor: autoformat using ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
mecaneer23 committed May 21, 2024
1 parent 8cccc1c commit 2d956bc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/md_to_py.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,10 @@ def _get_column_widths(
return output[:-1]


def _get_delimiter_locations(rows: Sequence[str], delimiter: str = "|") -> Iterator[int]:
def _get_delimiter_locations(
rows: Sequence[str],
delimiter: str = "|",
) -> Iterator[int]:
"""
Yield an iterator of delimiter locations.
Expand Down

0 comments on commit 2d956bc

Please sign in to comment.