ashb commented on code in PR #47339:
URL: https://github.com/apache/airflow/pull/47339#discussion_r1995124177
##########
airflow/models/skipmixin.py:
##########
@@ -124,12 +124,12 @@ def skip(
session.commit()
if task_id is not None:
- from airflow.models.xcom import XCom
+ from airflow.models.xcom import XComModel
Review Comment:
```suggestion
from airflow.sdk import XCom
```
##########
airflow/models/skipmixin.py:
##########
@@ -124,12 +124,12 @@ def skip(
session.commit()
if task_id is not None:
- from airflow.models.xcom import XCom
+ from airflow.models.xcom import XComModel
if map_index is None:
map_index = -1
- XCom.set(
+ XComModel.set(
Review Comment:
```suggestion
XCom.set(
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]