Reprints the conversation from the start.
(conv)
| 398 | return conv |
| 399 | |
| 400 | def reload_conv(conv): |
| 401 | """ |
| 402 | Reprints the conversation from the start. |
| 403 | """ |
| 404 | for message in conv.messages[conv.offset :]: |
| 405 | chatio.prompt_for_output(message[0]) |
| 406 | chatio.print_output(message[1]) |
| 407 | |
| 408 | conv = None |
| 409 |
no test coverage detected
searching dependent graphs…