@@ -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 ,
@@ -1326,7 +1326,7 @@ def stop_state_import(self, success: bool, input_file: Path) -> None:
13261326 else :
13271327 self .log_error ("State import failed!" )
13281328
1329- def show_model_difference_summary (
1329+ def show_difference_summary (
13301330 self ,
13311331 context_diff : ContextDiff ,
13321332 environment_naming_info : EnvironmentNamingInfo ,
@@ -1557,7 +1557,7 @@ def _prompt_categorize(
15571557 """Get the user's change category for the directly modified models."""
15581558 plan = plan_builder .build ()
15591559
1560- self .show_model_difference_summary (
1560+ self .show_difference_summary (
15611561 plan .context_diff ,
15621562 plan .environment_naming_info ,
15631563 default_catalog = default_catalog ,
@@ -2503,7 +2503,7 @@ class MarkdownConsole(CaptureTerminalConsole):
25032503 def __init__ (self , ** kwargs : t .Any ) -> None :
25042504 super ().__init__ (** {** kwargs , "console" : RichConsole (no_color = True )})
25052505
2506- def show_model_difference_summary (
2506+ def show_difference_summary (
25072507 self ,
25082508 context_diff : ContextDiff ,
25092509 environment_naming_info : EnvironmentNamingInfo ,
@@ -3044,7 +3044,7 @@ def update_env_migration_progress(self, num_tasks: int) -> None:
30443044 def stop_env_migration_progress (self , success : bool = True ) -> None :
30453045 self ._write (f"Stopping environment migration with success={ success } " )
30463046
3047- def show_model_difference_summary (
3047+ def show_difference_summary (
30483048 self ,
30493049 context_diff : ContextDiff ,
30503050 environment_naming_info : EnvironmentNamingInfo ,
0 commit comments