diff --git a/pymisp/api.py b/pymisp/api.py index 70bd097..906b21c 100644 --- a/pymisp/api.py +++ b/pymisp/api.py @@ -2241,7 +2241,7 @@ class PyMISP(object): # ###################### # ### Sharing Groups ### # ###################### - def add_sharing_group(self, name, releasability, description, active=True, roaming=False): + def add_sharing_group(self, name, releasability, description, active=True): """Add a new sharing group, which includes the organisation associated with the API key and the local server @@ -2249,13 +2249,11 @@ class PyMISP(object): :releasability: The releasibility information :description: The description of the sharing group :active: Should the sharing group be set to be active? - :roaming: Should the sharing group be allowed to roam? """ new_sg = MISPSharingGroup() new_sg.from_dict(name=name, releasability=releasability, - description=description, active=active, roaming=roaming) - + description=description, active=active) return self._rest_add('sharing_groups', new_sg) def sharing_group_org_add(self, sharing_group, organisation, extend=False):