Fix typo in process_command

This commit is contained in:
2023-03-18 14:47:40 -05:00
parent c5cb61154a
commit 0d7348a593

View File

@@ -47,7 +47,7 @@ class Context:
self.lookup_id_to_name = {}
async def process_command(self, input):
await process_command(ctx, input)
await process_command(self, input)
async def send_msgs(websocket, msgs):
if not websocket or not websocket.open or websocket.closed: