Skip to content

Commit c0498d3

Browse files
committed
Fix pre-commit check
1 parent 4108718 commit c0498d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zstash/extract.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ def multiprocess_extract(
346346
# Add this worker back to the heap, with the new amount of work.
347347
worker_tuple: Tuple[float, int] = (workers_work + tar_to_size[tar], worker_idx)
348348
# FIXME: error: Cannot infer type argument 1 of "heappush"
349-
heapq.heappush(work_to_workers, worker_tuple) # type: ignore
349+
heapq.heappush(work_to_workers, worker_tuple)
350350

351351
workers_to_matches: List[List[FilesRow]] = [[] for _ in range(num_workers)]
352352
workers_idx: int

0 commit comments

Comments
 (0)