From 0152b4eca0dca0db3fb04c7ec62f416389e084e7 Mon Sep 17 00:00:00 2001 From: cloudwithax Date: Sun, 11 Dec 2022 21:14:39 -0500 Subject: [PATCH] make queue.get() not explictly return anything --- pomice/queue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pomice/queue.py b/pomice/queue.py index 97d0cf7..bdeca1f 100644 --- a/pomice/queue.py +++ b/pomice/queue.py @@ -182,7 +182,7 @@ class Queue(Iterable[Track]): return self._queue - def get(self) -> Track: + def get(self): """Return next immediately available item in queue if any. Raises QueueEmpty if no items in queue. """