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 0708150 commit ac0ec52Copy full SHA for ac0ec52
services/storage/src/simcore_service_storage/api/_worker_tasks/_paths.py
@@ -43,7 +43,7 @@ async def delete_paths(
43
msg=f"delete {paths=} in {location_id=} for {user_id=}",
44
):
45
dsm = get_dsm_provider(get_fastapi_app(task.app)).get(location_id)
46
- files_ids = {
+ files_ids: set[StorageFileID] = {
47
TypeAdapter(StorageFileID).validate_python(f"{path}") for path in paths
48
}
49
await limited_gather(
0 commit comments