>>> format_chunks((10 * (3,), 3 * (10,))) (10*[3], 3*[10])
(chunks)
| 807 | |
| 808 | |
| 809 | def format_chunks(chunks): |
| 810 | """ |
| 811 | >>> format_chunks((10 * (3,), 3 * (10,))) |
| 812 | (10*[3], 3*[10]) |
| 813 | """ |
| 814 | assert isinstance(chunks, tuple) |
| 815 | return tuple(format_blocks(c) for c in chunks) |
| 816 | |
| 817 | |
| 818 | def format_plan(plan): |
no test coverage detected