Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
maximearmstrong committed Jun 20, 2024
1 parent 8d2a0d3 commit 3f389c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
from .dbt_manifest_asset_selection import DbtManifestAssetSelection as DbtManifestAssetSelection
from .dbt_project import (
DagsterDbtProjectPreparer as DagsterDbtProjectPreparer,
DbtProjectPreparer as DbtProjectPreparer,
DbtProject as DbtProject,
DbtProjectPreparer as DbtProjectPreparer,
)
from .errors import (
DagsterDbtCliRuntimeError as DagsterDbtCliRuntimeError,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -273,9 +273,7 @@ def __new__(
state_path=project_dir.joinpath(state_path) if state_path else None,
packaged_project_dir=packaged_project_dir,
has_uninstalled_deps=has_uninstalled_deps,
preparer=preparer
if preparer
else DagsterDbtProjectPreparer(),
preparer=preparer if preparer else DagsterDbtProjectPreparer(),
)

@public
Expand Down

0 comments on commit 3f389c0

Please sign in to comment.