Skip to content

Commit

Permalink
doc: use clear instead of overwrite in quickstart example
Browse files Browse the repository at this point in the history
  • Loading branch information
MarieS-WiMLDS committed Jan 22, 2025
1 parent edf1e57 commit 8089ce2
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion examples/getting_started/plot_quick_start.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# %%
import skore

my_project = skore.open("quick_start", overwrite=True)
my_project = skore.open("my_project", create=True)

# %%
# This will create a skore project directory named ``quick_start.skore`` in your
Expand Down Expand Up @@ -69,3 +69,12 @@
# .. admonition:: What's next?
#
# For a more in-depth guide, see our :ref:`example_skore_getting_started` page!

# %%
# Cleanup the project
# -------------------
#
# Let's clean the skore project to avoid conflict with other examples.

# %%
my_project.clear()

0 comments on commit 8089ce2

Please sign in to comment.