type error 'type' object is not subscriptable
I meet this problem when I run the main file. I don't know how to fix it.
Also facing the same issue.
I tried to revise the part "tuple[]" to "tuple([])".And then it works,. There are a lot of palces which need to be revised. I don't know if this is right, but it really works.
I think that is because of version mismatch. (I encountered that before) create a new virtual dev environment, and: pip install -r requirements.txt
The requirements.txt is in the repo.
This is particularly because of python version. try using Python 3.10
I did the following and it works
from typing import Tuple
then wherever tuple was there i replaced with Tuple