According to https://typespec.io/docs/getting-started/typespec-for-openapi-dev/, openapi {"type": string; "format": binary} equals to typespec bytes

However, python emitter emit the former to BinaryType whose typing is IO while the latter to ByteArraySchema whose typing is bytes.
Context
the issue is reported by @catalinaperalta who is helping migrate loadtesting to typespec.
According to https://typespec.io/docs/getting-started/typespec-for-openapi-dev/, openapi
{"type": string; "format": binary}equals to typespecbytesHowever, python emitter emit the former to BinaryType whose typing is
IOwhile the latter to ByteArraySchema whose typing isbytes.Context
the issue is reported by @catalinaperalta who is helping migrate loadtesting to typespec.