@@ -713,7 +713,7 @@ def stop_evaluation_progress(self, success: bool = True) -> None:
713713 if self .evaluation_progress_live :
714714 self .evaluation_progress_live .stop ()
715715 if success :
716- self .log_success (f"{ GREEN_CHECK_MARK } Model batches executed successfully " )
716+ self .log_success (f"{ GREEN_CHECK_MARK } Model batches executed" )
717717
718718 self .evaluation_progress_live = None
719719 self .evaluation_total_progress = None
@@ -760,7 +760,7 @@ def stop_creation_progress(self, success: bool = True) -> None:
760760 self .creation_progress .stop ()
761761 self .creation_progress = None
762762 if success :
763- self .log_success (f"\n { GREEN_CHECK_MARK } Physical layer updated successfully " )
763+ self .log_success (f"\n { GREEN_CHECK_MARK } Physical layer updated" )
764764
765765 self .environment_naming_info = EnvironmentNamingInfo ()
766766 self .default_catalog = None
@@ -801,7 +801,7 @@ def start_promotion_progress(
801801 if self .promotion_progress is None :
802802 self .promotion_progress = Progress (
803803 TextColumn (
804- "[bold blue]Updating virtual layer" ,
804+ "[bold blue]Updating virtual layer " , # space to align with other progress bars
805805 justify = "right" ,
806806 ),
807807 BarColumn (bar_width = PROGRESS_BAR_WIDTH ),
@@ -838,7 +838,7 @@ def stop_promotion_progress(self, success: bool = True) -> None:
838838 self .promotion_progress .stop ()
839839 self .promotion_progress = None
840840 if success :
841- self .log_success (f"\n { GREEN_CHECK_MARK } Virtual layer updated successfully " )
841+ self .log_success (f"\n { GREEN_CHECK_MARK } Virtual layer updated" )
842842
843843 self .environment_naming_info = EnvironmentNamingInfo ()
844844 self .default_catalog = None
0 commit comments