(value: Optional[Any])
| 562 | |
| 563 | |
| 564 | def is_file_payload(value: Optional[Any]) -> bool: |
| 565 | return ( |
| 566 | isinstance(value, dict) |
| 567 | and "name" in value |
| 568 | and "mimeType" in value |
| 569 | and "buffer" in value |
| 570 | ) |
| 571 | |
| 572 | |
| 573 | TEXTUAL_MIME_TYPE = re.compile( |
no outgoing calls
no test coverage detected