Open NathanLKing opened 6 years ago
I had the same problem and took the time to investigate. There seams to be a problem in the mycroft-core/.venv/lib/python3.7/site-packages/firebase/
package which is a dependency for this skill.
async
is a keyword in newer python versions and there exists a file mycroft-core/.venv/lib/python3.7/site-packages/firebase/async.py
which cannot be imported.
mycroft-core/.venv/lib/python3.7/site-packages/firebase/async.py
to asyncn.py
mycroft-core/.venv/lib/python3.7/site-packages/firebase/__init__.py
:
from .async import process_pool
to from .asyncn import process_pool
mycroft-core/.venv/lib/python3.7/site-packages/firebase/firebase.py
:
from .async import process_pool
to from .asyncn import process_pool
I forked and updated this skill: https://gitlab.com/glor/mycroft-youtube
Hi August,
I'm hoping to get some assistance on this Skill as it isn't functioning. Could you spare some time to assist?
Thanks.
Nathan