diff --git a/stdlib/3/queue.pyi b/stdlib/3/queue.pyi index 15d62f5e7..90cd5fc28 100644 --- a/stdlib/3/queue.pyi +++ b/stdlib/3/queue.pyi @@ -17,4 +17,4 @@ class Queue(Generic[_T]): def qsize(self) -> int: ... def task_done(self) -> None: pass -class Empty: ... +class Empty(Exception): ...