You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I often see code where a method returns a tuple of values with different type but the caller only cares about certain elements. In that case, it is common to specify _ as the variable name for these elements.
However, if two or more of these _ variables have a different type, mypy will complain that an expression is assigned to a variable of different type.