[#274] Fix iam_attach_group_policy function

This commit is contained in:
Roman Chernykh 2024-07-31 18:32:08 +05:00 committed by Andrey Berezin
parent ea60c2104a
commit 54b42e2d8d
2 changed files with 2 additions and 2 deletions

View file

@ -408,7 +408,7 @@ class S3ClientWrapper(HumanReadableABC):
"""Adds the specified user to the specified group"""
@abstractmethod
def iam_attach_group_policy(self, group: str, policy_arn: str) -> dict:
def iam_attach_group_policy(self, group_name: str, policy_arn: str) -> dict:
"""Attaches the specified managed policy to the specified IAM group"""
@abstractmethod