-
Notifications
You must be signed in to change notification settings - Fork 289
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
TypeError from websocket.py #292
Comments
thanks, i got them in the CI as well ok |
I wonder why Maybe it's overridden by some local variable? |
This should not cause any problems by itself. |
I think the problem is that when process() is called at line 410, it makes the call without including the second parameter, namely bytes and the definition of process() does not define the default argument. So, there is no "bytes" object (it is None). |
The problem is To fix this problem, the |
Recent commit appears to be causing a TypeError: cb60792
Here is the error:
See also: klattimer/LGWebOSRemote#172
Seems like the error might be from this line:
WebSocket-for-Python/ws4py/websocket.py
Line 410 in cb60792
The second parameter is null.
The text was updated successfully, but these errors were encountered: