issue with ucollections module

Finding an issue trying to initialize a deque (from ucollections)
I import ucollections
then try to initialize with
de = ucollections.deque((),100)
receiving AttributeError: ‘module’ object has no attribute deque
Thanks

Looks like that is missing from the module. Not sure why.

Please open a bug for this on GitHub.

This was disabled in our firmware:

#define MICROPY_PY_COLLECTIONS_DEQUE (0)

Ibrahim, can you enable this? micropython/mpconfigport.h at 3d8ad19853c07714a55683a536c9bc9805ceb835 · openmv/micropython · GitHub

It’s enabled now.