make queue.get() not explictly return anything

This commit is contained in:
cloudwithax 2022-12-11 21:14:39 -05:00
parent 23fd49be1a
commit 0152b4eca0
1 changed files with 1 additions and 1 deletions

View File

@ -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.
"""