Skip to content

Commit

Permalink
misc typos
Browse files Browse the repository at this point in the history
  • Loading branch information
asedeno committed Jun 24, 2023
1 parent 172114a commit 21d3d66
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion roost_backend/subscribers.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ async def channel_layer_resubscribe(self):
await asyncio.sleep(self.channel_layer.group_expiry / 2)

async def channel_layer_handler(self):
# Initialize channel layer.'
# Initialize channel layer.

self.channel_layer = channels.layers.get_channel_layer(self.channel_layer_alias)
self.channel_name = await self.channel_layer.new_channel()
self.channel_receive = functools.partial(self.channel_layer.receive, self.channel_name)
Expand Down
2 changes: 1 addition & 1 deletion roost_backend/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ def get(self, request):

def post(self, request):
# Accept, validate, and then promptly ignore credentials.
# If they were included, they auth layer pushed them to the user process.
# If they were included, the auth layer pushed them to the user process.
ret = request.zephyr_credentials is not None
return Response({
'refreshed': ret,
Expand Down

0 comments on commit 21d3d66

Please sign in to comment.