Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CI #221

Merged
merged 10 commits into from
Dec 12, 2023
Merged
Prev Previous commit
Next Next commit
Fix mypy
davidbrochart committed Dec 12, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit a87dc22459f024e226f5cf649d6d9e286c17f60e
4 changes: 3 additions & 1 deletion jupyter_collaboration/handlers.py
Original file line number Diff line number Diff line change
@@ -105,7 +105,9 @@ async def prepare(self):
await self._websocket_server.start_room(self.room)
self._websocket_server.add_room(self._room_id, self.room)

return await super().prepare()
res = super().prepare()
if res is not None:
return await res

def initialize(
self,