This is an automated email from the ASF dual-hosted git repository. kaxilnaik 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 8648366486a Remove unused `ParamSpec` (#45687) 8648366486a is described below commit 8648366486ac6f27df63bde444a81c329ff44609 Author: Kaxil Naik <kaxiln...@apache.org> AuthorDate: Thu Jan 16 00:19:05 2025 +0530 Remove unused `ParamSpec` (#45687) This isn't used in the file --- airflow/utils/api_migration.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/airflow/utils/api_migration.py b/airflow/utils/api_migration.py index 3e6ba3881cb..28baa1cdc5a 100644 --- a/airflow/utils/api_migration.py +++ b/airflow/utils/api_migration.py @@ -25,9 +25,6 @@ from __future__ import annotations from typing import Callable, TypeVar -from airflow.typing_compat import ParamSpec - -PS = ParamSpec("PS") RT = TypeVar("RT")