From 40fa77efcc22f8a4b21284f7d562f462cfe70d07 Mon Sep 17 00:00:00 2001 From: Narek Mkhitaryan Date: Thu, 17 Jul 2025 11:14:03 +0400 Subject: [PATCH] fix in UploadMultiModalAnnotationsUseCase --- src/superannotate/lib/core/usecases/annotations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/superannotate/lib/core/usecases/annotations.py b/src/superannotate/lib/core/usecases/annotations.py index 0e5365e5..c091ffcf 100644 --- a/src/superannotate/lib/core/usecases/annotations.py +++ b/src/superannotate/lib/core/usecases/annotations.py @@ -2178,5 +2178,5 @@ def _attach_categories(self, folder_id: int, item_id_category_map: Dict[int, str self._service_provider.items.bulk_attach_categories( project_id=self._project.id, folder_id=folder_id, - item_category_map=item_id_category_id_map, + item_id_category_id_map=item_id_category_id_map, )