move sleep call in send, minor cleanup

This commit is contained in:
Timothy Pogue
2022-11-19 13:21:26 -07:00
parent 98d87b3ba6
commit c1a73a5512
2 changed files with 9 additions and 12 deletions

View File

@@ -31,7 +31,6 @@ class WebSocketSerializer(ABC):
async def recv(self) -> bytes:
data = await self._websocket.recv()
return self._deserialize(data)