mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 11:34:18 +00:00
🐛 Make put a coroutine
This commit is contained in:
parent
5569ceed72
commit
2b48eae60c
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ class Dispenser:
|
||||||
A :class:`list` of all the running sentries of this dispenser.
|
A :class:`list` of all the running sentries of this dispenser.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def put(self, item: t.Any) -> None:
|
async def put(self, item: t.Any) -> None:
|
||||||
"""
|
"""
|
||||||
Insert a new item in the queues of all the running sentries.
|
Insert a new item in the queues of all the running sentries.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue