Skip to content

Commit 189208e

Browse files
authored
fix: add default (empty) tags to dbt builtin globals config (#5506)
1 parent c8bee08 commit 189208e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sqlmesh/dbt/builtin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ def create_builtin_globals(
482482
if variables is not None:
483483
builtin_globals["var"] = Var(variables)
484484

485-
builtin_globals["config"] = Config(jinja_globals.pop("config", {}))
485+
builtin_globals["config"] = Config(jinja_globals.pop("config", {"tags": []}))
486486

487487
deployability_index = (
488488
jinja_globals.get("deployability_index") or DeployabilityIndex.all_deployable()

0 commit comments

Comments
 (0)