From ceae28f964dbda91056f6c3e9add0bc48570c666 Mon Sep 17 00:00:00 2001 From: laspir <71002530+laspir@users.noreply.github.com> Date: Sat, 23 Dec 2023 11:07:14 +0100 Subject: [PATCH] Fix method name in README (#137) Rename end_conversation -> close_conversation --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ffefbea..563cfe1 100644 --- a/README.md +++ b/README.md @@ -118,7 +118,7 @@ await sydney.start_conversation() # Conversation -await sydney.end_conversation() +await sydney.close_conversation() ``` Alternatively, you can use the `async with` statement to keep the code compact: