diff --git a/src/md_to_py.py b/src/md_to_py.py index 95fa0ae..d0b388c 100644 --- a/src/md_to_py.py +++ b/src/md_to_py.py @@ -3,7 +3,9 @@ """ -def _get_column_widths(row: str, delimiter: str = "|", strip_spaces: bool = True) -> list[int]: +def _get_column_widths( + row: str, delimiter: str = "|", strip_spaces: bool = True +) -> list[int]: """ Return a list of column widths. Columns are determined by a delimiter character.