typing.List only allows one kind of element in itself.
typing.List
To fix this error: 1. -> List[Any] 2. Define List by [Any]
-> List[Any]
List
[Any]
a = List[Any]
a[0] == typing.Any
a = a[1:]