Skip to content

Commit 63fd842

Browse files
Fix: Escape backslash to prevent syntax error in string (#4662)
1 parent 8edfae4 commit 63fd842

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sqlmesh/core/plan/explainer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ def visit_backfill_stage(self, stage: stages.BackfillStage) -> Tree:
195195

196196
tree.add(model_tree)
197197
else:
198-
tree.add(f"{display_name} \[standalone audit]")
198+
tree.add(f"{display_name} \\[standalone audit]")
199199
return tree
200200

201201
def visit_migrate_schemas_stage(self, stage: stages.MigrateSchemasStage) -> Tree:

0 commit comments

Comments
 (0)