mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 03:24:20 +00:00
🐛 Fix sentry putting python modules in the queue
This commit is contained in:
parent
f97412aea0
commit
d29e041566
1 changed files with 1 additions and 1 deletions
|
@ -175,7 +175,7 @@ class SentrySource(Sentry):
|
||||||
return await self.queue.get()
|
return await self.queue.get()
|
||||||
|
|
||||||
async def put(self, item) -> None:
|
async def put(self, item) -> None:
|
||||||
return await self.queue.put(bullet)
|
return await self.queue.put(item)
|
||||||
|
|
||||||
async def dispenser(self):
|
async def dispenser(self):
|
||||||
return self._dispenser
|
return self._dispenser
|
||||||
|
|
Loading…
Reference in a new issue