diff --git a/ypy_websocket/ystore.py b/ypy_websocket/ystore.py index 9c46eb7..75c1a15 100644 --- a/ypy_websocket/ystore.py +++ b/ypy_websocket/ystore.py @@ -40,7 +40,7 @@ async def encode_state_as_update(self, ydoc: Y.YDoc): await self.write(update) async def apply_updates(self, ydoc: Y.YDoc): - async for update, metadata in await self.read(): + async for update, metadata in self.read(): # type: ignore Y.apply_update(ydoc, update) # type: ignore