Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions airflow_dbt_python/hooks/dbt.py
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,9 @@ class DbtHook(BaseHook):
Allows for running dbt tasks and provides required configurations for each task.
"""

def __init__(self):
pass

def get_config_factory(self, command: str) -> ConfigFactory:
"""Get a ConfigFactory given a dbt command string."""
return ConfigFactory.from_str(command)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "airflow-dbt-python"
version = "0.9.2"
version = "0.9.3"
description = "A dbt operator for Airflow that uses the dbt Python package"
authors = ["Tomás Farías Santana <tomas@tomasfarias.dev>"]
license = "MIT"
Expand Down