File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -614,9 +614,9 @@ def show_model_difference_summary(
614
614
"""
615
615
if context_diff .is_new_environment :
616
616
msg = (
617
- f"`{ context_diff .environment } ` environment will be initialized"
617
+ f"\n `{ context_diff .environment } ` environment will be initialized"
618
618
if not context_diff .create_from_env_exists
619
- else f"New environment `{ context_diff .environment } ` will be created from `{ context_diff .create_from } `"
619
+ else f"\n New environment `{ context_diff .environment } ` will be created from `{ context_diff .create_from } `"
620
620
)
621
621
self ._print (Tree (f"[bold]{ msg } \n " ))
622
622
if not context_diff .has_snapshot_changes :
@@ -628,7 +628,7 @@ def show_model_difference_summary(
628
628
# the PlanBuilder.
629
629
self ._print (
630
630
Tree (
631
- f"[bold]No changes to plan: project files match the `{ context_diff .environment } ` environment\n "
631
+ f"\n [bold]No changes to plan: project files match the `{ context_diff .environment } ` environment\n "
632
632
)
633
633
)
634
634
return
Original file line number Diff line number Diff line change @@ -300,7 +300,7 @@ def snapshots_by_name(self) -> t.Dict[str, Snapshot]:
300
300
return {x .name : x for x in self .snapshots .values ()}
301
301
302
302
def requirements_diff (self ) -> str :
303
- return "\n " .join (
303
+ return " " + " \n " .join (
304
304
ndiff (
305
305
[
306
306
f"{ k } =={ self .previous_requirements [k ]} "
You can’t perform that action at this time.
0 commit comments