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