(obj: object)
| 23 | |
| 24 | |
| 25 | def is_base64_file_input(obj: object) -> TypeGuard[Base64FileInput]: |
| 26 | return isinstance(obj, io.IOBase) or isinstance(obj, os.PathLike) |
| 27 | |
| 28 | |
| 29 | def is_file_content(obj: object) -> TypeGuard[FileContent]: |
no outgoing calls
no test coverage detected