Fix wating -> waiting typo

This commit is contained in:
Matt Lewis
2025-04-23 15:55:14 -04:00
parent b23ca5a4a8
commit d42c618398

View File

@@ -38,7 +38,7 @@ class BaseObject(ABC):
async def cleanup(self):
if self._event_tasks:
event_names, tasks = zip(*self._event_tasks)
logger.debug(f"{self} wating on event handlers to finish {list(event_names)}...")
logger.debug(f"{self} waiting on event handlers to finish {list(event_names)}...")
await asyncio.wait(tasks)
def event_handler(self, event_name: str):