Lee-W commented on code in PR #43773: URL: https://github.com/apache/airflow/pull/43773#discussion_r1844906445
########## airflow/example_dags/example_asset_decorator.py: ########## @@ -18,9 +18,9 @@ import pendulum -from airflow.assets import Asset from airflow.decorators import dag, task -from airflow.decorators.assets import asset +from airflow.sdk.definitions.asset import Asset +from airflow.sdk.definitions.decorators.asset import asset Review Comment: moved it to asset but split it in into different modules. ```tree task_sdk/src/airflow/sdk/definitions/asset ├── __init__.py ├── decorators.py └── metadata.py ``` -- 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]
