Skip to content

Commit

Permalink
Fix regression in s3.py (#507)
Browse files Browse the repository at this point in the history
  • Loading branch information
aazo11 committed Jun 8, 2024
1 parent c8b3171 commit f0ee349
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/engine/dataherald/utils/s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class S3:
def __init__(self):
self.settings = Settings()

def _get_client(self, access_key: str | None = None, secret_access_key: str | None = None, region: str | None = None): -> boto3.client:
def _get_client(self, access_key: str | None = None, secret_access_key: str | None = None, region: str | None = None) -> boto3.client:
_access_key = access_key or self.settings.s3_aws_access_key_id
_secret_access_key = secret_access_key or self.settings.s3_aws_secret_access_key
_region = region or self.settings.s3_region
Expand Down

0 comments on commit f0ee349

Please sign in to comment.