You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
after mybot.Device.device.controller.stick("left", point=(0.7, 0.7)) mybot.Device.device.controller.button('CROSS', 'tap')
I get an error: File "D:\github_other\rust_console_fishing\venv\lib\site-packages\pyremoteplay\stream.py", line 77, in sendto self.transport.sendto(data, addr) File "P:\Python\python38_64\lib\asyncio\proactor_events.py", line 495, in sendto self._buffer.append((bytes(data), addr)) AttributeError: 'NoneType' object has no attribute 'append'
The error does not always appear. Time delays sometimes solve the problem, but in the main program it causes the session to crash. How to fix it ?
The text was updated successfully, but these errors were encountered:
Disable checking in asyncio: lib\asyncio\proactor_events.py
in func _loop_writing: assert fut is self._write_fut
transform to: try: assert fut is self._write_fut except: print('event assert error')
My code:
after
mybot.Device.device.controller.stick("left", point=(0.7, 0.7)) mybot.Device.device.controller.button('CROSS', 'tap')
I get an error:
File "D:\github_other\rust_console_fishing\venv\lib\site-packages\pyremoteplay\stream.py", line 77, in sendto self.transport.sendto(data, addr) File "P:\Python\python38_64\lib\asyncio\proactor_events.py", line 495, in sendto self._buffer.append((bytes(data), addr)) AttributeError: 'NoneType' object has no attribute 'append'
The error does not always appear. Time delays sometimes solve the problem, but in the main program it causes the session to crash. How to fix it ?
The text was updated successfully, but these errors were encountered: