make queue.get() not explictly return anything
This commit is contained in:
parent
23fd49be1a
commit
0152b4eca0
|
|
@ -182,7 +182,7 @@ class Queue(Iterable[Track]):
|
||||||
return self._queue
|
return self._queue
|
||||||
|
|
||||||
|
|
||||||
def get(self) -> Track:
|
def get(self):
|
||||||
"""Return next immediately available item in queue if any.
|
"""Return next immediately available item in queue if any.
|
||||||
Raises QueueEmpty if no items in queue.
|
Raises QueueEmpty if no items in queue.
|
||||||
"""
|
"""
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue