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
The syntax here:
Adafruit_CircuitPython_AS7341/adafruit_as7341.py
Line 195 in a0f486f
Adafruit CircuitPython 6.2.0 on 2021-04-05; Adafruit QT Py M0 with samd21e18 >>> from collections import namedtuple >>> foo = namedtuple("foo", "x y z") Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: object 'str' is not a tuple or list >>> foo = namedtuple("foo", ("x","y","z")) >>>
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
The syntax here:
Adafruit_CircuitPython_AS7341/adafruit_as7341.py
Line 195 in a0f486f
does not work for all boards. The feature is left out for "small" boards, like:
The text was updated successfully, but these errors were encountered: