Skip to content

Commit

Permalink
Fix: occasional dead code in get_task
Browse files Browse the repository at this point in the history
  • Loading branch information
kokorin committed Jun 15, 2024
1 parent 7348b65 commit 964b008
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/dbt_osmosis/vendored/dbt_core_interface/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -900,7 +900,6 @@ def get_task(self, typ: DbtCommand, args: DbtTaskConfiguration) -> "ManifestTask
# DBT 1.8 requires manifest as 2-nd positional argument
task = self.get_task_cls(typ)(args, self.config, self.manifest)
except Exception as e:
raise e
task = self.get_task_cls(typ)(args, self.config)
# Render this a no-op on this class instance so that the tasks `run`
# method plumbing will defer to our existing in memory manifest.
Expand Down

0 comments on commit 964b008

Please sign in to comment.