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
Checks like b'abc' in b'cde' can potentially return True, but they are flagged as always false by --strict-equality. This is because bytes is a subclass of Sequence[int]. We should probably simply special-case this.