Skip to content

Commit

Permalink
fix: AwsAuth with empty credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunato committed Jan 17, 2025
1 parent 23ecdc2 commit ba6cc16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eodag/plugins/authentication/aws_auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def authenticate(self) -> S3SessionKwargs:
{
k: getattr(self, k)
for k in S3SessionKwargs.__annotations__
if getattr(self, k, None) is not None
if getattr(self, k, None)
},
)
return auth_dict

0 comments on commit ba6cc16

Please sign in to comment.