diff --git a/airflow/providers/google/cloud/transfers/bigquery_to_postgres.py b/airflow/providers/google/cloud/transfers/bigquery_to_postgres.py index 0fc06a50d82c..5918d48fa244 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 `. """ - template_fields: Sequence[str] = (*BigQueryToSqlBaseOperator.template_fields, "dataset_id", "table_id") - def __init__( self, *,