(x: object)
| 18 | |
| 19 | @multimethod |
| 20 | def convert_to_block(x: object) -> DataBlock: |
| 21 | raise DPClientError( |
| 22 | f"{type(x)} not supported directly, please pass into in the appropriate dp object (including dp.Attachment if want to upload as a pickle)" |
| 23 | ) |
| 24 | |
| 25 | |
| 26 | # NOTE - this is currently disabled to avoid confusing users when they |
no test coverage detected