(xs)
| 735 | ) |
| 736 | |
| 737 | def assert_int_chunksize(xs): |
| 738 | assert all(type(c) is int for x in xs for cc in x.chunks for c in cc) |
| 739 | |
| 740 | assert_int_chunksize(args) |
| 741 | if not trim and "chunks" not in kwargs: |
no test coverage detected
searching dependent graphs…