Skip to content

Commit

Permalink
style(core/dbt/cli): add __main__.py to call dbt cli as python modu…
Browse files Browse the repository at this point in the history
…le with only `dbt.cli`
  • Loading branch information
vicmattos committed Oct 14, 2024
1 parent 40c350f commit 4cceccd
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions core/dbt/cli/__main__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

from __future__ import annotations

from dbt.cli.main import cli


if __name__ == '__main__':
raise SystemExit(cli())

0 comments on commit 4cceccd

Please sign in to comment.