We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4108718 commit c0498d3Copy full SHA for c0498d3
zstash/extract.py
@@ -346,7 +346,7 @@ def multiprocess_extract(
346
# Add this worker back to the heap, with the new amount of work.
347
worker_tuple: Tuple[float, int] = (workers_work + tar_to_size[tar], worker_idx)
348
# FIXME: error: Cannot infer type argument 1 of "heappush"
349
- heapq.heappush(work_to_workers, worker_tuple) # type: ignore
+ heapq.heappush(work_to_workers, worker_tuple)
350
351
workers_to_matches: List[List[FilesRow]] = [[] for _ in range(num_workers)]
352
workers_idx: int
0 commit comments