From c18fd24165da30b42ab0bdeb8bd0b890fe352cbc Mon Sep 17 00:00:00 2001 From: Elliot Kroo Date: Fri, 12 Jul 2019 18:38:23 -0700 Subject: [PATCH] Fix missing import `dbt_cloud.py` uses `AirflowException` without importing it. This change fixes this issue. --- dbt_cloud_plugin/dbt_cloud/dbt_cloud.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dbt_cloud_plugin/dbt_cloud/dbt_cloud.py b/dbt_cloud_plugin/dbt_cloud/dbt_cloud.py index 7b0afdb..7537b71 100644 --- a/dbt_cloud_plugin/dbt_cloud/dbt_cloud.py +++ b/dbt_cloud_plugin/dbt_cloud/dbt_cloud.py @@ -3,6 +3,8 @@ import requests import time +from airflow.exceptions import AirflowException + class DbtCloud(object): """ Class for interacting with the dbt Cloud API