From 99e505a71005690973c3ae20a62a5e054a44ea49 Mon Sep 17 00:00:00 2001 From: Sylvain Combettes <48064216+sylvaincom@users.noreply.github.com> Date: Fri, 10 Jan 2025 13:44:42 +0100 Subject: [PATCH] docs: Minor change in the README.md (#1075) By default, `create=True` in `open` so no need to specify it --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 59d13c0bb..674efd131 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ You can find information on the latest version [here](https://anaconda.org/conda 1. From your Python code, create and load a skore project: ```python import skore - my_project = skore.open("my_project", create = True) + my_project = skore.open("my_project") ``` This will create a skore project directory named `my_project.skore` in your current working directory.