We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb76698 commit f310260Copy full SHA for f310260
tests/test_store/test_object.py
@@ -29,7 +29,7 @@ async def get(self, store: ObjectStore, key: str) -> Buffer:
29
# TODO: There must be a better way to get the path to the store
30
store_path = re.search(PATTERN, str(store)).group(1)
31
new_local_store = obstore.store.LocalStore(prefix=store_path)
32
- return self.buffer_cls.from_bytes(obstore.get(new_local_store, key))
+ return self.buffer_cls.from_bytes(obstore.get(new_local_store, key).bytes())
33
34
async def set(self, store: ObjectStore, key: str, value: Buffer) -> None:
35
0 commit comments