diff --git a/stdlib/2/Queue.pyi b/stdlib/2/Queue.pyi index 11b01ed1c..1593eb1c6 100644 --- a/stdlib/2/Queue.pyi +++ b/stdlib/2/Queue.pyi @@ -27,5 +27,5 @@ class Queue(Generic[_T]): def get(self, block: bool = ..., timeout: Optional[float] = ...) -> _T: ... def get_nowait(self) -> _T: ... -class PriorityQueue(Queue): ... -class LifoQueue(Queue): ... +class PriorityQueue(Queue[_T]): ... +class LifoQueue(Queue[_T]): ...