Skip to content

Commit

Permalink
remove unecessary templated field (#36491)
Browse files Browse the repository at this point in the history
  • Loading branch information
romsharon98 committed Dec 29, 2023
1 parent 0d9a26c commit f070efa
Showing 1 changed file with 0 additions and 4 deletions.
Expand Up @@ -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

Expand All @@ -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,
*,
Expand Down

0 comments on commit f070efa

Please sign in to comment.