'What does Tuple[Hashable] mean in Python?

I came across the following piece of code:

def func(self, v: Tuple[Hashable]):
...

I know v: Tuple would mean variable v must be of type Tuple, but what does Tuple[Hashable] mean? Isn't a tuple in Python always hashable?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source