Reports unnecessary calls to typing.cast when the expression already has the specified target type.
Example:
from typing import cast a: int b = cast(int, a) # Unnecessary, a is already int