@@ -276,7 +276,7 @@ def stop_state_import(self, success: bool, input_file: Path) -> None:
276276 """Finish a state import"""
277277
278278 @abc .abstractmethod
279- def show_model_difference_summary (
279+ def show_difference_summary (
280280 self ,
281281 context_diff : ContextDiff ,
282282 environment_naming_info : EnvironmentNamingInfo ,
@@ -550,7 +550,7 @@ def update_state_import_progress(
550550 def stop_state_import (self , success : bool , input_file : Path ) -> None :
551551 pass
552552
553- def show_model_difference_summary (
553+ def show_difference_summary (
554554 self ,
555555 context_diff : ContextDiff ,
556556 environment_naming_info : EnvironmentNamingInfo ,
@@ -1266,7 +1266,7 @@ def stop_state_import(self, success: bool, input_file: Path) -> None:
12661266 else :
12671267 self .log_error ("State import failed!" )
12681268
1269- def show_model_difference_summary (
1269+ def show_difference_summary (
12701270 self ,
12711271 context_diff : ContextDiff ,
12721272 environment_naming_info : EnvironmentNamingInfo ,
@@ -1497,7 +1497,7 @@ def _prompt_categorize(
14971497 """Get the user's change category for the directly modified models."""
14981498 plan = plan_builder .build ()
14991499
1500- self .show_model_difference_summary (
1500+ self .show_difference_summary (
15011501 plan .context_diff ,
15021502 plan .environment_naming_info ,
15031503 default_catalog = default_catalog ,
@@ -2443,7 +2443,7 @@ class MarkdownConsole(CaptureTerminalConsole):
24432443 def __init__ (self , ** kwargs : t .Any ) -> None :
24442444 super ().__init__ (** {** kwargs , "console" : RichConsole (no_color = True )})
24452445
2446- def show_model_difference_summary (
2446+ def show_difference_summary (
24472447 self ,
24482448 context_diff : ContextDiff ,
24492449 environment_naming_info : EnvironmentNamingInfo ,
@@ -2980,7 +2980,7 @@ def update_env_migration_progress(self, num_tasks: int) -> None:
29802980 def stop_env_migration_progress (self , success : bool = True ) -> None :
29812981 self ._write (f"Stopping environment migration with success={ success } " )
29822982
2983- def show_model_difference_summary (
2983+ def show_difference_summary (
29842984 self ,
29852985 context_diff : ContextDiff ,
29862986 environment_naming_info : EnvironmentNamingInfo ,
0 commit comments