This is an automated email from the ASF dual-hosted git repository.

vatsrahul1001 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 109c257919f Drop stale type:ignore[override] on 
ExecutionAPISecretsBackend (#68415)
109c257919f is described below

commit 109c257919ff9b09288620c96d964e2aa362965d
Author: Deepak kumar <[email protected]>
AuthorDate: Mon Aug 3 02:04:10 2026 -0700

    Drop stale type:ignore[override] on ExecutionAPISecretsBackend (#68415)
---
 task-sdk/src/airflow/sdk/execution_time/secrets/execution_api.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/task-sdk/src/airflow/sdk/execution_time/secrets/execution_api.py 
b/task-sdk/src/airflow/sdk/execution_time/secrets/execution_api.py
index 57bffd12a16..dd6abddf08a 100644
--- a/task-sdk/src/airflow/sdk/execution_time/secrets/execution_api.py
+++ b/task-sdk/src/airflow/sdk/execution_time/secrets/execution_api.py
@@ -65,7 +65,7 @@ class ExecutionAPISecretsBackend(BaseSecretsBackend):
                 "to a less-restrictive secrets backend."
             )
 
-    def get_connection(self, conn_id: str, team_name: str | None = None) -> 
Connection | None:  # type: ignore[override]
+    def get_connection(self, conn_id: str, team_name: str | None = None) -> 
Connection | None:
         """
         Return connection object by routing through SUPERVISOR_COMMS.
 
@@ -135,7 +135,7 @@ class ExecutionAPISecretsBackend(BaseSecretsBackend):
             # to allow fallback to other backends.
             return None
 
-    async def aget_connection(self, conn_id: str) -> Connection | None:  # 
type: ignore[override]
+    async def aget_connection(self, conn_id: str) -> Connection | None:
         """
         Return connection object asynchronously via SUPERVISOR_COMMS.
 

Reply via email to