Skip to content

Commit

Permalink
Fix #3
Browse files Browse the repository at this point in the history
  • Loading branch information
andresriancho committed Jul 31, 2019
1 parent 93c0828 commit 1366347
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion enumerate_iam/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,8 @@ def get_client(access_key, secret_key, session_token, service_name, region):
return client


def check_one_permission((access_key, secret_key, session_token, region, service_name, operation_name)):
def check_one_permission(arg_tuple):
access_key, secret_key, session_token, region, service_name, operation_name = arg_tuple
logger = logging.getLogger()

service_client = get_client(access_key, secret_key, session_token, service_name, region)
Expand Down

0 comments on commit 1366347

Please sign in to comment.