1
Fork 0
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:
Steffo 2020-12-29 15:32:37 +01:00
parent f97412aea0
commit d29e041566

View file

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