from typing import Literal | |
from av.stream import Stream | |
class AttachmentStream(Stream): | |
type: Literal["attachment"] | |
def mimetype(self) -> str | None: ... | |
from typing import Literal | |
from av.stream import Stream | |
class AttachmentStream(Stream): | |
type: Literal["attachment"] | |
def mimetype(self) -> str | None: ... | |