We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Currently this passes mypy:
from typing import Hashable def f(x: Hashable): pass f([])
A possible solution may be to add __hash__: None to non-hashable types like list.
__hash__: None
list