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
I'm using a Metro M0 express with Circuitpython 7.0.0 and when I try to run a simple code with import adafruit_fingerprint I get a ImportError: no module named 'ustruct'. While checking the code I saw that the fingerrprint lib try to import ustruct only if typing, busio or struct isn't present. By checking the default module of Circuitpython 7.0.0 I can confirm the absence of typing and ustruct.
Am I missing something?
The text was updated successfully, but these errors were encountered:
The changes to add type hints accidentally made the module
non-importable on circuitpython boards.
I'm not sure whether we need to keep the `ustruct` compatibility
(it would only apply to micropython) but go ahead and do so.
Closes: #36
I'm using a Metro M0 express with Circuitpython 7.0.0 and when I try to run a simple code with
import adafruit_fingerprint
I get aImportError: no module named 'ustruct'
. While checking the code I saw that the fingerrprint lib try to import ustruct only if typing, busio or struct isn't present. By checking the default module of Circuitpython 7.0.0 I can confirm the absence of typing and ustruct.Am I missing something?
The text was updated successfully, but these errors were encountered: