This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new f070efa95c remove unecessary templated field (#36491)
f070efa95c is described below
commit f070efa95c9c1aafffec76a2a24f2b58961ff39c
Author: rom sharon <[email protected]>
AuthorDate: Sat Dec 30 01:05:14 2023 +0200
remove unecessary templated field (#36491)
---
airflow/providers/google/cloud/transfers/bigquery_to_postgres.py | 4 ----
1 file changed, 4 deletions(-)
diff --git a/airflow/providers/google/cloud/transfers/bigquery_to_postgres.py
b/airflow/providers/google/cloud/transfers/bigquery_to_postgres.py
index 0fc06a50d8..5918d48fa2 100644
--- a/airflow/providers/google/cloud/transfers/bigquery_to_postgres.py
+++ b/airflow/providers/google/cloud/transfers/bigquery_to_postgres.py
@@ -18,8 +18,6 @@
"""This module contains Google BigQuery to PostgreSQL operator."""
from __future__ import annotations
-from typing import Sequence
-
from airflow.providers.google.cloud.transfers.bigquery_to_sql import
BigQueryToSqlBaseOperator
from airflow.providers.postgres.hooks.postgres import PostgresHook
@@ -36,8 +34,6 @@ class BigQueryToPostgresOperator(BigQueryToSqlBaseOperator):
:param postgres_conn_id: Reference to :ref:`postgres connection id
<howto/connection:postgres>`.
"""
- template_fields: Sequence[str] =
(*BigQueryToSqlBaseOperator.template_fields, "dataset_id", "table_id")
-
def __init__(
self,
*,