06555b5
1
2
3
4
5
6
7
8
9
from typing import Literal from av.stream import Stream class AttachmentStream(Stream): type: Literal["attachment"] @property def mimetype(self) -> str | None: ...