TJaniF opened a new issue, #48711: URL: https://github.com/apache/airflow/issues/48711
### Apache Airflow version main (development) ### If "Other Airflow 2 version" selected, which one? main right now ### What happened? Clicked on an asset in the assets list that is created with @asset, was greeted with this:  ### What you think should happen instead? An asset graph ### How to reproduce Use this chain of 3 assets that run normally, run them once: ``` from airflow.sdk import asset @asset(schedule="@daily") # A def extracted_data(): # B pass # C @asset(schedule=extracted_data) # D def transformed_data(): pass # E @asset(schedule=transformed_data) def loaded_data(): pass # F ``` Click on the Assets tab in the sidebar, then on the "loaded_data" asset. see the error. ### Operating System MacOs and caffeine ### Versions of Apache Airflow Providers _No response_ ### Deployment Other ### Deployment details breeze - now with uv! ### Anything else? _No response_ ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [x] I agree to follow this project's [Code of Conduct](https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md) -- 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]
