Skip to content

Commit 7356136

Browse files
committed
ruff
1 parent 1d86fa5 commit 7356136

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/simcore-sdk/src/simcore_sdk/node_ports_common/filemanager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ async def _generate_checksum(
291291
return checksum
292292
if isinstance(path_to_upload, Path):
293293
async with aiofiles.open(path_to_upload, mode="rb") as f:
294-
checksum = SHA256Str(await create_sha256_checksum(f))
294+
checksum = await create_sha256_checksum(f)
295295
elif isinstance(path_to_upload, UploadableFileObject):
296296
checksum = path_to_upload.sha256_checksum
297297
return checksum

0 commit comments

Comments
 (0)