diff --git a/airflow_dbt_python/hooks/dbt.py b/airflow_dbt_python/hooks/dbt.py index 97e96b1c..a7e8f75a 100644 --- a/airflow_dbt_python/hooks/dbt.py +++ b/airflow_dbt_python/hooks/dbt.py @@ -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) diff --git a/pyproject.toml b/pyproject.toml index 595b52a9..c0ac7266 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] license = "MIT"