diff --git a/callbacks/consumers.py b/callbacks/consumers.py index 68d7a46..b818876 100644 --- a/callbacks/consumers.py +++ b/callbacks/consumers.py @@ -5,7 +5,7 @@ import json class WebhookConsumer(AsyncWebsocketConsumer): async def connect(self): - """While the connection of open it is associated with a callback""" + """While the connection is open, it is associated with a callback id""" self.callback = self.scope["url_route"]["kwargs"]["uuid"] await self.channel_layer.group_add(self.callback, self.channel_name) await self.accept()