This is an automated email from the ASF dual-hosted git repository.
pierrejeambrun 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 d6887637d56 fix ruff errors in routes public job (#44363)
d6887637d56 is described below
commit d6887637d561a73c41a64a29ff45eb8fd8282dde
Author: GPK <[email protected]>
AuthorDate: Mon Nov 25 16:19:24 2024 +0000
fix ruff errors in routes public job (#44363)
---
airflow/api_fastapi/core_api/routes/public/job.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/airflow/api_fastapi/core_api/routes/public/job.py
b/airflow/api_fastapi/core_api/routes/public/job.py
index a2b4fa2de70..0619ec8e666 100644
--- a/airflow/api_fastapi/core_api/routes/public/job.py
+++ b/airflow/api_fastapi/core_api/routes/public/job.py
@@ -16,10 +16,11 @@
# under the License.
from __future__ import annotations
+from typing import Annotated
+
from fastapi import Depends, status
from sqlalchemy import select
from sqlalchemy.orm import Session
-from typing_extensions import Annotated
from airflow.api_fastapi.common.db.common import (
get_session,