From b1ce6c95e59fb548036203fea3f7dd4f121ca492 Mon Sep 17 00:00:00 2001 From: Eksperimental Date: Sun, 19 Sep 2021 12:59:48 -0500 Subject: [PATCH] Update README.md there is not such a `close/0` function. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9723f6b..d01dc22 100644 --- a/README.md +++ b/README.md @@ -56,8 +56,8 @@ defmodule SomePythonCall do # same as above but prettier val = py |> Python.call(upcase("hello"), from_file: "test") - # close the Python process - py |> Python.close() + # stop the Python process + py |> Python.stop() val end