Skip to content

Commit

Permalink
Fixed delete_access_group()
Browse files Browse the repository at this point in the history
  • Loading branch information
Torsten Steinbach committed Nov 22, 2023
1 parent 39b7c2d commit ffb615d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cosaccess/cosaccess/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
# limitations under the License.
# ------------------------------------------------------------------------------

__version__ = "0.1.9"
__version__ = "0.1.10"
# flake8: noqa F401
from .cosaccess import CosAccessManager
2 changes: 1 addition & 1 deletion cosaccess/cosaccess/cosaccess.py
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ def delete_access_group(self, access_group_name:str = None, access_group_id:str
id = access_group_id
else:
id = self.get_access_group_id(access_group_name)
self._access_groups_service.delete_access_group(account_id=self._account_id, access_group_id=id, force=force)
self._access_groups_service.delete_access_group(access_group_id=id, force=force)

def get_access_group_members(self, access_group_name:str = None, access_group_id:str = None):
if [bool(access_group_name), bool(access_group_id)].count(True) != 1:
Expand Down

0 comments on commit ffb615d

Please sign in to comment.