Skip to content
Merged
8 changes: 6 additions & 2 deletions airflow/providers/tableau/operators/tableau.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# under the License.
from __future__ import annotations

from typing import TYPE_CHECKING
from typing import TYPE_CHECKING, Sequence

from airflow.exceptions import AirflowException
from airflow.models import BaseOperator
Expand All @@ -29,7 +29,6 @@
if TYPE_CHECKING:
from airflow.utils.context import Context


RESOURCES_METHODS = {
"datasources": ["delete", "refresh"],
"groups": ["delete"],
Expand Down Expand Up @@ -64,6 +63,11 @@ class TableauOperator(BaseOperator):
containing the credentials to authenticate to the Tableau Server.
"""

template_fields: Sequence[str] = (
"find",
"match_with",
)

def __init__(
self,
*,
Expand Down