-
-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Set template fields for each operator
DAGs do not render properly when template fields do not exist. Since we were defining `template_fields` at the base class, these may not be present in all subclasses. We moved `template_fields` to each subclass to fix this.
- Loading branch information
1 parent
e06caeb
commit 3b65cca
Showing
2 changed files
with
45 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "airflow-dbt-python" | ||
version = "0.9.1" | ||
version = "0.9.2" | ||
description = "A dbt operator for Airflow that uses the dbt Python package" | ||
authors = ["Tomás Farías Santana <[email protected]>"] | ||
license = "MIT" | ||
|