(item)
| 466 | encoded_cache = {} |
| 467 | |
| 468 | def encode_task(item): |
| 469 | img_id, img = item |
| 470 | return img_id, self.encode_image_directly(img) |
| 471 | |
| 472 | try: |
| 473 | with concurrent.futures.ThreadPoolExecutor(max_workers=16) as executor: |
nothing calls this directly
no test coverage detected