Mypy passes accepts the following snippet, even though the set subtraction is guaranteed to be a no-op. ``` a: Set[str] = set(["hello"]) b: Set[bytes] = set([b"world"]) b -= a ``` Would it make sense to require `Set[T]` for both arguments to a difference operation?