From 76f25be80a5104713a73496792e39b22c629b35e Mon Sep 17 00:00:00 2001 From: mecaneer23 Date: Fri, 26 Jan 2024 14:08:04 -0600 Subject: [PATCH] refactor: autoformat --- src/md_to_py.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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.