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
218218 history = load_last_conversation () if args .continue_ else None
219219 except ValidationError :
220220 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]'
222222 )
223223 history = None
224224
Original file line number Diff line number Diff line change @@ -210,8 +210,8 @@ def test_cli_continue_last_conversation_corrupted_file(
210210 assert capfd .readouterr ().out .splitlines () == snapshot (
211211 [
212212 IsStr (),
213- 'Error loading last conversation, it is corrupted or invalid. Starting a new ' ,
214- 'conversation.' ,
213+ 'Error loading last conversation, it is corrupted or invalid.' ,
214+ 'Starting a new conversation.' ,
215215 '# world' ,
216216 ]
217217 )
You can’t perform that action at this time.
0 commit comments