File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
pydantic_ai_slim/pydantic_ai Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -218,7 +218,7 @@ def cli( # noqa: C901
218
218
history = load_last_conversation () if args .continue_ else None
219
219
except ValidationError :
220
220
console .print (
221
- '[red]Error loading last conversation, it is corrupted or invalid. Starting a new conversation.[/red]'
221
+ '[red]Error loading last conversation, it is corrupted or invalid.\n Starting a new conversation.[/red]'
222
222
)
223
223
history = None
224
224
Original file line number Diff line number Diff line change @@ -209,8 +209,8 @@ def test_cli_continue_last_conversation_corrupted_file(
209
209
assert capfd .readouterr ().out .splitlines () == snapshot (
210
210
[
211
211
IsStr (),
212
- 'Error loading last conversation, it is corrupted or invalid. Starting a new ' ,
213
- 'conversation.' ,
212
+ 'Error loading last conversation, it is corrupted or invalid.' ,
213
+ 'Starting a new conversation.' ,
214
214
'# world' ,
215
215
]
216
216
)
You can’t perform that action at this time.
0 commit comments