From ba6cc169a55e2e6e461efe199e531b887380bdb2 Mon Sep 17 00:00:00 2001 From: Sylvain Brunato Date: Fri, 17 Jan 2025 15:18:51 +0100 Subject: [PATCH] fix: AwsAuth with empty credentials --- eodag/plugins/authentication/aws_auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eodag/plugins/authentication/aws_auth.py b/eodag/plugins/authentication/aws_auth.py index 066cadb93..dc2b2e7ae 100644 --- a/eodag/plugins/authentication/aws_auth.py +++ b/eodag/plugins/authentication/aws_auth.py @@ -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