Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions airflow/providers/databricks/operators/databricks.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ class DatabricksSubmitRunOperator(BaseOperator):

# Used in airflow.models.BaseOperator
template_fields: Sequence[str] = ('json',)
template_ext: Sequence[str] = ('.json',)
template_ext: Sequence[str] = ('.json-tpl',)
# Databricks brand color (blue) under white text
ui_color = '#1CB1C2'
ui_fgcolor = '#fff'
Expand Down Expand Up @@ -574,7 +574,7 @@ class DatabricksRunNowOperator(BaseOperator):

# Used in airflow.models.BaseOperator
template_fields: Sequence[str] = ('json',)
template_ext: Sequence[str] = ('.json',)
template_ext: Sequence[str] = ('.json-tpl',)
# Databricks brand color (blue) under white text
ui_color = '#1CB1C2'
ui_fgcolor = '#fff'
Expand Down