We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48ba2df commit b8705f7Copy full SHA for b8705f7
airflow_dbt_python/hooks/dbt.py
@@ -186,9 +186,9 @@ def patch_manifest_task(self, task: ManifestTask):
186
TypeError: If the dbt task is not a subclass of ManifestTask.
187
"""
188
try:
189
- from dbt.exceptions import InternalException as DbtException
+ from dbt.exceptions import InternalException as DbtException # type: ignore
190
except ImportError:
191
- from dbt.exceptions import DbtRuntimeError as DbtException
+ from dbt.exceptions import DbtRuntimeError as DbtException # type: ignore
192
193
if isinstance(task, ManifestTask) is False:
194
raise TypeError(
0 commit comments