ferruzzi commented on code in PR #32358:
URL: https://github.com/apache/airflow/pull/32358#discussion_r1253354150
##########
airflow/providers/snowflake/operators/snowflake.py:
##########
@@ -548,7 +548,7 @@ def execute_complete(self, context: Context, event:
dict[str, str | list[str]] |
raise AirflowException(msg)
elif "status" in event and event["status"] == "success":
hook =
SnowflakeSqlApiHook(snowflake_conn_id=self.snowflake_conn_id)
- query_ids = cast(List[str], event["statement_query_ids"])
+ query_ids = cast(list[str], event["statement_query_ids"])
Review Comment:
Yeah, `ruff` is doing that and I am switching it back manually, but I must
have missed that one. Thanks for the catch.
--
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]