Add missed param
Some checks failed
Lint / lint (push) Waiting to run
release-tag / release-image (push) Has been cancelled

This commit is contained in:
Logan Cusano
2025-04-27 03:18:50 -04:00
parent 46ec27c359
commit 9dfee88789

View File

@@ -22,6 +22,7 @@ class DiscordBotManager:
self.token: Optional[str] = None
self.loop = asyncio.get_event_loop()
self.lock = asyncio.Lock()
self._ready_event = asyncio.Event()
async def start_bot(self, token: str):
async with self.lock: