Skip to content

Commit

Permalink
Fix tuple issue
Browse files Browse the repository at this point in the history
  • Loading branch information
chand1012 committed Feb 22, 2021
1 parent dca88cc commit 0083319
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pillar_queue/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def __init__(self, name, aws_access_key=None, aws_access_secret=None, aws_defaul
The default region set by this library is `us-east-1`. To change that, simply set `aws_default_region` to the region string, for example `us-east-2` or `eu-
'''
self.name = name
self.aws_access_key = aws_access_key,
self.aws_access_key = aws_access_key
self.aws_access_secret = aws_access_secret
self.aws_default_region = aws_default_region

Expand Down

0 comments on commit 0083319

Please sign in to comment.