This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new b77f7a74b61 Remove unnecessary list (#58141)
b77f7a74b61 is described below
commit b77f7a74b61ee769b72c79d262f3b920582195f8
Author: ha2hi <[email protected]>
AuthorDate: Tue Nov 11 07:24:32 2025 +0900
Remove unnecessary list (#58141)
---
providers/amazon/src/airflow/providers/amazon/aws/utils/mixins.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/providers/amazon/src/airflow/providers/amazon/aws/utils/mixins.py
b/providers/amazon/src/airflow/providers/amazon/aws/utils/mixins.py
index 2fb80bcb151..436266a83f5 100644
--- a/providers/amazon/src/airflow/providers/amazon/aws/utils/mixins.py
+++ b/providers/amazon/src/airflow/providers/amazon/aws/utils/mixins.py
@@ -158,4 +158,4 @@ def aws_template_fields(*template_fields: str) ->
tuple[str, ...]:
f"{', '.join(map(repr, template_fields))}."
)
raise TypeError(msg)
- return tuple(sorted(list({"aws_conn_id", "region_name", "verify"} |
set(template_fields))))
+ return tuple(sorted({"aws_conn_id", "region_name", "verify"} |
set(template_fields)))