Closed dhalbert closed 2 years ago
If this assert fails, it is almost invariably due to a missing await: https://github.com/dhalbert/Adafruit_CircuitPython_asyncio/blob/e8c2d389758d94629a12bfab92c6b11f2eb6cdbf/asyncio/core.py#L68
assert
await
Add a message suggesting that the user should check for a missing await.
I have seen this multiple times, and someone else now saw it as well, for the same reason.
If this
assert
fails, it is almost invariably due to a missingawait
: https://github.com/dhalbert/Adafruit_CircuitPython_asyncio/blob/e8c2d389758d94629a12bfab92c6b11f2eb6cdbf/asyncio/core.py#L68Add a message suggesting that the user should check for a missing
await
.I have seen this multiple times, and someone else now saw it as well, for the same reason.