diff --git a/README.md b/README.md index 87aa5e4f5..f202d42fe 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,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") + my_project = skore.open("my_project", create=True) ``` This will create a skore project directory named `my_project.skore` in your current working directory. diff --git a/examples/getting_started/plot_quick_start.py b/examples/getting_started/plot_quick_start.py index 12268ded3..4d04bdf7d 100644 --- a/examples/getting_started/plot_quick_start.py +++ b/examples/getting_started/plot_quick_start.py @@ -16,9 +16,7 @@ # %% # This will create a skore project directory named ``quick_start.skore`` in your -# current working directory. Note that `overwrite=True` will overwrite any pre-existing -# project with the same path (which you might not want to do that depending on your use -# case). +# current working directory. # %% # Evaluate your model using skore's :class:`~skore.CrossValidationReport`: