5 lines
81 B
Python
5 lines
81 B
Python
from queue import Queue
|
|
from typing import Any
|
|
|
|
class LifoQueue(Queue[Any]): ...
|