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 1d86fa5 commit 7356136Copy full SHA for 7356136
packages/simcore-sdk/src/simcore_sdk/node_ports_common/filemanager.py
@@ -291,7 +291,7 @@ async def _generate_checksum(
291
return checksum
292
if isinstance(path_to_upload, Path):
293
async with aiofiles.open(path_to_upload, mode="rb") as f:
294
- checksum = SHA256Str(await create_sha256_checksum(f))
+ checksum = await create_sha256_checksum(f)
295
elif isinstance(path_to_upload, UploadableFileObject):
296
checksum = path_to_upload.sha256_checksum
297
0 commit comments