You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by "ferruzzi (via GitHub)" <gi...@apache.org> on 2023/07/05 16:25:16 UTC

[GitHub] [airflow] ferruzzi commented on a diff in pull request #32358: D205 Support - Providers: Pagerduty to SMTP (inclusive)

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: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org