From a7719840c201d8f446a47cf5b4915d1a0606cc6a Mon Sep 17 00:00:00 2001 From: Xiao Gui Date: Fri, 4 Oct 2024 17:13:25 +0200 Subject: [PATCH] fix get_map --- api/server/volumes/parcellationmap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/server/volumes/parcellationmap.py b/api/server/volumes/parcellationmap.py index 0da6fb9..79d085d 100644 --- a/api/server/volumes/parcellationmap.py +++ b/api/server/volumes/parcellationmap.py @@ -35,7 +35,7 @@ def get_siibra_map(parcellation_id: str, space_id: str, map_type: MapType, name """Get map according to specification""" if func is None: raise HTTPException(500, f"func: None passsed") - return func(parcellation_id, space_id, map_type, name) + return func(parcellation_id, space_id, map_type) # still use the old worker. New worker not stable (?)