Skip to content

Commit

Permalink
Merge branch 'master' of github.com:unj-inovacao/tucuxi
Browse files Browse the repository at this point in the history
  • Loading branch information
gitdoluquita committed Aug 14, 2020
2 parents b2f8ad3 + 9f2ccb8 commit 104b1f1
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/tucuxi/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,18 +38,19 @@ def get_session(self) -> Any:
"""
return self.sess

def s3(self, bucket_name: str) -> Any:
def s3(self, bucket_name: str, **kwargs: Any) -> Any:
"""[summary]
Args:
bucket_name (str): [description]
bucket_name (str): Name of the S3 Bucket.
kwargs (Any): Arbitrary keyword arguments.
Returns:
Any: [description]
"""
from tucuxi import S3 # Sorry!

return S3(bucket_name, self)
return S3(bucket_name, self, **kwargs)

def sqs(self, queue_url: str, region: str = "us-east-1") -> Any:
"""[summary]
Expand Down

0 comments on commit 104b1f1

Please sign in to comment.