Skip to content

Commit e6ab124

Browse files
authored
Fix: column spacing for progress bar updates (#4159)
1 parent 7791e8d commit e6ab124

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

sqlmesh/core/console.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -768,7 +768,7 @@ def start_evaluation_progress(
768768
self.evaluation_column_widths["name"] = max(
769769
len(
770770
snapshot.display_name(
771-
self.environment_naming_info,
771+
environment_naming_info,
772772
default_catalog if self.verbosity < Verbosity.VERY_VERBOSE else None,
773773
dialect=self.dialect,
774774
)
@@ -894,7 +894,7 @@ def start_creation_progress(
894894
self.creation_column_widths["name"] = max(
895895
len(
896896
snapshot.display_name(
897-
self.environment_naming_info,
897+
environment_naming_info,
898898
default_catalog if self.verbosity < Verbosity.VERY_VERBOSE else None,
899899
dialect=self.dialect,
900900
)
@@ -982,7 +982,7 @@ def start_promotion_progress(
982982
self.promotion_column_widths["name"] = max(
983983
len(
984984
snapshot.display_name(
985-
self.environment_naming_info,
985+
environment_naming_info,
986986
default_catalog if self.verbosity < Verbosity.VERY_VERBOSE else None,
987987
dialect=self.dialect,
988988
)

0 commit comments

Comments
 (0)