diff --git a/python_modules/libraries/dagster-dbt/dagster_dbt/__init__.py b/python_modules/libraries/dagster-dbt/dagster_dbt/__init__.py index 9539dc0588e49..49b412dad0a0b 100644 --- a/python_modules/libraries/dagster-dbt/dagster_dbt/__init__.py +++ b/python_modules/libraries/dagster-dbt/dagster_dbt/__init__.py @@ -31,7 +31,7 @@ from .dbt_project import ( DagsterDbtManifestPreparer as DagsterDbtManifestPreparer, DbtManifestPreparer as DbtManifestPreparer, - DbtProject as DbtProject + DbtProject as DbtProject, ) from .errors import ( DagsterDbtCliRuntimeError as DagsterDbtCliRuntimeError, diff --git a/python_modules/libraries/dagster-dbt/dagster_dbt/dbt_project.py b/python_modules/libraries/dagster-dbt/dagster_dbt/dbt_project.py index a7de17e55afe7..b33ef631e3df7 100644 --- a/python_modules/libraries/dagster-dbt/dagster_dbt/dbt_project.py +++ b/python_modules/libraries/dagster-dbt/dagster_dbt/dbt_project.py @@ -101,7 +101,7 @@ def prepare(self, project: "DbtProject") -> None: The preparation process: * pulls and installs the dependencies of the dbt project, * parses the dbt project and created a loadable manifest file. - + Args: project (DbtProject): The dbt project to be prepared.