@@ -395,7 +395,7 @@ def _limit_model_names(self, tree: Tree, verbosity: Verbosity = Verbosity.DEFAUL
395395 ):
396396 tree .children = [
397397 tree .children [0 ],
398- Tree (f".... { modified_length - 2 } more ...." ),
398+ Tree (f".... { modified_length - 2 } more ...." ),
399399 tree .children [- 1 ],
400400 ]
401401 return tree
@@ -1985,9 +1985,9 @@ def _get_snapshot_change_category(
19851985 snapshot , plan_builder .environment_naming_info , default_catalog
19861986 )
19871987 response = self ._prompt (
1988- "\n " .join ([f"[{ i + 1 } ] { choice } " for i , choice in enumerate (choices .values ())]),
1988+ "\n " .join ([f"[{ i + 1 } ] { choice } " for i , choice in enumerate (choices .values ())]),
19891989 show_choices = False ,
1990- choices = [f"{ i + 1 } " for i in range (len (choices ))],
1990+ choices = [f"{ i + 1 } " for i in range (len (choices ))],
19911991 )
19921992 choice = list (choices )[int (response ) - 1 ]
19931993 plan_builder .set_choice (snapshot , choice )
@@ -2476,7 +2476,7 @@ def show_model_difference_summary(
24762476 and list_length > self .INDIRECTLY_MODIFIED_DISPLAY_THRESHOLD
24772477 ):
24782478 self ._print (added_models [0 ])
2479- self ._print (f"- `.... { list_length - 2 } more ....`\n " )
2479+ self ._print (f"- `.... { list_length - 2 } more ....`\n " )
24802480 self ._print (added_models [- 1 ])
24812481 else :
24822482 for snapshot in added_models :
@@ -2503,7 +2503,7 @@ def show_model_difference_summary(
25032503 and list_length > self .INDIRECTLY_MODIFIED_DISPLAY_THRESHOLD
25042504 ):
25052505 self ._print (removed_models [0 ])
2506- self ._print (f"- `.... { list_length - 2 } more ....`\n " )
2506+ self ._print (f"- `.... { list_length - 2 } more ....`\n " )
25072507 self ._print (removed_models [- 1 ])
25082508 else :
25092509 for snapshot_table_info in removed_models :
@@ -2551,7 +2551,7 @@ def show_model_difference_summary(
25512551 ):
25522552 self ._print (
25532553 f"- `{ indirectly_modified [0 ].display_name (environment_naming_info , default_catalog if self .verbosity < Verbosity .VERY_VERBOSE else None , dialect = self .dialect )} `\n "
2554- f"- `.... { modified_length - 2 } more ....`\n "
2554+ f"- `.... { modified_length - 2 } more ....`\n "
25552555 f"- `{ indirectly_modified [- 1 ].display_name (environment_naming_info , default_catalog if self .verbosity < Verbosity .VERY_VERBOSE else None , dialect = self .dialect )} `"
25562556 )
25572557 else :
@@ -2597,7 +2597,7 @@ def _show_missing_dates(self, plan: Plan, default_catalog: t.Optional[str]) -> N
25972597 and length > self .INDIRECTLY_MODIFIED_DISPLAY_THRESHOLD
25982598 ):
25992599 self ._print (snapshots [0 ])
2600- self ._print (f"- `.... { length - 2 } more ....`\n " )
2600+ self ._print (f"- `.... { length - 2 } more ....`\n " )
26012601 self ._print (snapshots [- 1 ])
26022602 else :
26032603 for snap in snapshots :
0 commit comments