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
>>> import adafruit_rfm9x Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/home/pi/circuit/venv/lib/python3.7/site-packages/adafruit_rfm9x.py", line 142, in <module> class RFM9x: File "/home/pi/circuit/venv/lib/python3.7/site-packages/adafruit_rfm9x.py", line 265, in RFM9x crc: bool = True NameError: name 'SPI' is not defined
The real exception, hidden by the typing try-except is the following:
File "/home/pi/circuit/venv/lib/python3.7/site-packages/adafruit_rfm9x.py", line 31, in <module> from typing import Optional, Type, Literal ImportError: cannot import name 'Literal' from 'typing' (/usr/lib/python3.7/typing.py)
Literal is in python 3.8.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
The real exception, hidden by the typing try-except is the following:
Literal is in python 3.8.
The text was updated successfully, but these errors were encountered: