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
This doesn't work in python3: https://github.com/project8/dragonfly/blob/develop/dragonfly/implementations/spime_endpoints.py#L170 (well, it doesn't work when you call the [0] element in a couple lines)
Error is: got a: 'map' object is not subscriptable
The text was updated successfully, but these errors were encountered:
Problem is that the map function returns an iterator of type map in python 3.
map
Solution options are: https://python-future.org/compatible_idioms.html#map
I think probably 4 is best/most consistent with what we've been doing elsewhere
Sorry, something went wrong.
No branches or pull requests
This doesn't work in python3:
https://github.com/project8/dragonfly/blob/develop/dragonfly/implementations/spime_endpoints.py#L170
(well, it doesn't work when you call the [0] element in a couple lines)
Error is:
got a: 'map' object is not subscriptable
The text was updated successfully, but these errors were encountered: