diff --git a/jc/parsers/asciitable_m.py b/jc/parsers/asciitable_m.py index 5761c242..f94bf8e3 100644 --- a/jc/parsers/asciitable_m.py +++ b/jc/parsers/asciitable_m.py @@ -224,8 +224,9 @@ def _get_data(table: Iterable[Tuple[int, List]]) -> List[List[List[str]]]: """ return a list of rows, which are lists made up of lists of strings: [ # data - [ # rows - ['str', 'str', 'str'] # lines + [ # data rows + ['str', 'str', 'str'], # data lines + ['str', 'str', 'str'] ] ] """