@@ -282,7 +282,7 @@ def stop_env_migration_progress(self, success: bool = True) -> None:
282282 """Stop the environment migration progress."""
283283
284284 @abc .abstractmethod
285- def show_model_difference_summary (
285+ def show_difference_summary (
286286 self ,
287287 context_diff : ContextDiff ,
288288 environment_naming_info : EnvironmentNamingInfo ,
@@ -552,7 +552,7 @@ def update_state_import_progress(
552552 def stop_state_import (self , success : bool , input_file : Path ) -> None :
553553 pass
554554
555- def show_model_difference_summary (
555+ def show_difference_summary (
556556 self ,
557557 context_diff : ContextDiff ,
558558 environment_naming_info : EnvironmentNamingInfo ,
@@ -1312,7 +1312,7 @@ def stop_state_import(self, success: bool, input_file: Path) -> None:
13121312 else :
13131313 self .log_error ("State import failed!" )
13141314
1315- def show_model_difference_summary (
1315+ def show_difference_summary (
13161316 self ,
13171317 context_diff : ContextDiff ,
13181318 environment_naming_info : EnvironmentNamingInfo ,
@@ -1543,7 +1543,7 @@ def _prompt_categorize(
15431543 """Get the user's change category for the directly modified models."""
15441544 plan = plan_builder .build ()
15451545
1546- self .show_model_difference_summary (
1546+ self .show_difference_summary (
15471547 plan .context_diff ,
15481548 plan .environment_naming_info ,
15491549 default_catalog = default_catalog ,
@@ -2489,7 +2489,7 @@ class MarkdownConsole(CaptureTerminalConsole):
24892489 def __init__ (self , ** kwargs : t .Any ) -> None :
24902490 super ().__init__ (** {** kwargs , "console" : RichConsole (no_color = True )})
24912491
2492- def show_model_difference_summary (
2492+ def show_difference_summary (
24932493 self ,
24942494 context_diff : ContextDiff ,
24952495 environment_naming_info : EnvironmentNamingInfo ,
@@ -3030,7 +3030,7 @@ def update_env_migration_progress(self, num_tasks: int) -> None:
30303030 def stop_env_migration_progress (self , success : bool = True ) -> None :
30313031 self ._write (f"Stopping environment migration with success={ success } " )
30323032
3033- def show_model_difference_summary (
3033+ def show_difference_summary (
30343034 self ,
30353035 context_diff : ContextDiff ,
30363036 environment_naming_info : EnvironmentNamingInfo ,
0 commit comments