From 1daac6ef86d70ac39353cedcf25cb6dad5b2b227 Mon Sep 17 00:00:00 2001 From: Jeroen Pinoy Date: Sat, 27 Apr 2024 01:35:10 +0200 Subject: [PATCH] chg: allow orgc context for search_galaxy_clusters --- pymisp/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pymisp/api.py b/pymisp/api.py index 325f374..0803561 100644 --- a/pymisp/api.py +++ b/pymisp/api.py @@ -1554,7 +1554,7 @@ class PyMISP: """ galaxy_id = get_uuid_or_id_from_abstract_misp(galaxy) - allowed_context_types: list[str] = ["all", "default", "custom", "org", "deleted"] + allowed_context_types: list[str] = ["all", "default", "custom", "org", "orgc", "deleted"] if context not in allowed_context_types: raise PyMISPError(f"The context must be one of {', '.join(allowed_context_types)}") kw_params = {"context": context}