We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Was testing this library out and the following line self._websocket.close(code) needs an await
self._websocket.close(code)
await
async def close(self, code: int = 1000): if self._websocket is not None: # Case opened, we have something to close. self._websocket.close(code)
The text was updated successfully, but these errors were encountered:
Want to open a PR? :)
Sorry, something went wrong.
Should it be closed now by #43?
Yes you are correct - @mberdyshev - thank you.
Closed by #43
roekatz
No branches or pull requests
Was testing this library out and the following line
self._websocket.close(code)
needs anawait
The text was updated successfully, but these errors were encountered: