From 609b1c8bf605573369e5b681746f0b80d39b6c85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gon=C3=A7alo=20Val=C3=A9rio?= Date: Sat, 18 May 2019 19:24:28 +0100 Subject: [PATCH] fix typo on consumer docstring --- callbacks/consumers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()