uranusjr commented on code in PR #57465:
URL: https://github.com/apache/airflow/pull/57465#discussion_r2471864032


##########
airflow-core/src/airflow/api_fastapi/execution_api/routes/asset_events.py:
##########
@@ -86,9 +86,9 @@ def get_asset_event_by_asset_name_uri(
     if name and uri:
         where_clause = and_(AssetModel.name == name, AssetModel.uri == uri)
     elif uri:
-        where_clause = and_(AssetModel.uri == uri, AssetModel.active.has())
+        where_clause = and_(AssetModel.uri == uri, AssetModel.active.has())  # 
type: ignore[attr-defined]

Review Comment:
   Aren’t these just standard SQLAlchemy things? We shouldn’t have any errors 
here…



-- 
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]

Reply via email to