Hey Tobia, here's another issue from the python 2/3 conversion fixed and a better fix put in place from the one I gave you in rt.py yesterday. Cheers
feedplugins.py:
I'm guessing that previously the array would be padded with a None if only 1 value was returned, this is a bit hack-y, but work.
rt.py:
Better fix compared to yesterday, convert the numpy array type rather than the resulting values.
Convert the positions zip to a list as zips are enumerators in python 3 and cannot be indexed
Hey Tobia, here's another issue from the python 2/3 conversion fixed and a better fix put in place from the one I gave you in rt.py yesterday. Cheers
feedplugins.py: I'm guessing that previously the array would be padded with a None if only 1 value was returned, this is a bit hack-y, but work.
rt.py: Better fix compared to yesterday, convert the numpy array type rather than the resulting values. Convert the positions zip to a list as zips are enumerators in python 3 and cannot be indexed