This is an automated email from the ASF dual-hosted git repository.
amoghdesai 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 70e2fe8ee47 Remove outdated comment for baseoperator (#58596)
70e2fe8ee47 is described below
commit 70e2fe8ee476226868d7d3dd9d3acc3e226eff92
Author: Amogh Desai <[email protected]>
AuthorDate: Sun Nov 23 22:11:15 2025 +0530
Remove outdated comment for baseoperator (#58596)
---
task-sdk/src/airflow/sdk/bases/operator.py | 1 -
1 file changed, 1 deletion(-)
diff --git a/task-sdk/src/airflow/sdk/bases/operator.py
b/task-sdk/src/airflow/sdk/bases/operator.py
index 1279e906a77..0292d9abef6 100644
--- a/task-sdk/src/airflow/sdk/bases/operator.py
+++ b/task-sdk/src/airflow/sdk/bases/operator.py
@@ -1190,7 +1190,6 @@ class BaseOperator(AbstractOperator,
metaclass=BaseOperatorMeta):
validate_instance_args(self, BASEOPERATOR_ARGS_EXPECTED_TYPES)
# Ensure priority_weight is within the valid range
- # Note: Cross-import from airflow.utils to be cleaned up later
self.priority_weight = db_safe_priority(self.priority_weight)
def __eq__(self, other):