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