diff --git a/pymisp/api.py b/pymisp/api.py index 325f374d..08035611 100644 --- a/pymisp/api.py +++ b/pymisp/api.py @@ -1554,7 +1554,7 @@ def search_galaxy_clusters(self, galaxy: MISPGalaxy | int | str | UUID, context: """ 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}