(shape)
| 271 | |
| 272 | |
| 273 | def _create_combined_ids(shape): |
| 274 | tile_ids = _create_tile_ids(shape) |
| 275 | nums = range(len(tile_ids)) |
| 276 | return { |
| 277 | tile_id: create_test_data(num) |
| 278 | for tile_id, num in zip(tile_ids, nums, strict=True) |
| 279 | } |
| 280 | |
| 281 | |
| 282 | def _create_tile_ids(shape): |
nothing calls this directly
no test coverage detected
searching dependent graphs…