>>> format_plan([((10, 10, 10), (15, 15)), ((30,), (10, 10, 10))]) [(3*[10], 2*[15]), ([30], 3*[10])]
(plan)
| 816 | |
| 817 | |
| 818 | def format_plan(plan): |
| 819 | """ |
| 820 | >>> format_plan([((10, 10, 10), (15, 15)), ((30,), (10, 10, 10))]) |
| 821 | [(3*[10], 2*[15]), ([30], 3*[10])] |
| 822 | """ |
| 823 | return [format_chunks(c) for c in plan] |
| 824 | |
| 825 | |
| 826 | def _get_chunks(n, chunksize): |
nothing calls this directly
no test coverage detected