From dac45272b5c8dc2667fb83c7113ecd453d82e750 Mon Sep 17 00:00:00 2001 From: Inga Ulusoy Date: Thu, 25 May 2023 10:51:39 +0200 Subject: [PATCH] correct expected type to list --- ammico/multimodal_search.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ammico/multimodal_search.py b/ammico/multimodal_search.py index 3344afd..c047edf 100644 --- a/ammico/multimodal_search.py +++ b/ammico/multimodal_search.py @@ -153,7 +153,7 @@ class MultimodalSearch(AnalysisMethod): raw_image = Image.open(filepath).convert("RGB") return raw_image - def read_and_process_images(self, image_paths: str, vis_processor) -> tuple: + def read_and_process_images(self, image_paths: list, vis_processor) -> tuple: """ Read and process images with vis_processor.