Skip to content

Commit

Permalink
Add missing period
Browse files Browse the repository at this point in the history
  • Loading branch information
matthieucan committed May 29, 2024
1 parent 36719b1 commit edaacfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dbt_score/dbt_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def dbt_ls(select: Iterable[str] | None) -> Iterable[str]:
result: dbtRunnerResult = dbtRunner().invoke(cmd)

if not result.success:
raise DbtLsException("dbt ls failed") from result.exception
raise DbtLsException("dbt ls failed.") from result.exception

selected = cast(Iterable[str], result.result) # mypy hint
return selected
Expand Down

0 comments on commit edaacfa

Please sign in to comment.