File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 11from dataclasses import dataclass
2- from multiprocessing import Queue
2+ from queue import Queue
33from typing import (
44 Generic ,
55 Literal ,
Original file line number Diff line number Diff line change 33import time
44from collections .abc import AsyncGenerator , Iterable , Iterator
55from concurrent .futures import ProcessPoolExecutor
6- from multiprocessing import Manager , Queue
6+ from multiprocessing import Manager
77from queue import Empty as QueueEmpty
8+ from queue import Queue
89from typing import (
910 Any ,
1011 Generic ,
Original file line number Diff line number Diff line change 44from abc import ABC , abstractmethod
55from collections .abc import AsyncGenerator
66from dataclasses import dataclass
7- from multiprocessing import Queue
87from queue import Empty as QueueEmpty
8+ from queue import Queue
99from typing import (
1010 Any ,
1111 Generic ,
You can’t perform that action at this time.
0 commit comments