1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-07-15 01:24:29 +02:00

formatting

This commit is contained in:
Kelly Brazil
2022-03-21 13:33:35 -07:00
parent 90e79b7df3
commit f611d08b50

View File

@ -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']
]
]
"""