Skip to content

Commit

Permalink
add version info
Browse files Browse the repository at this point in the history
  • Loading branch information
gtarpenning committed Jan 21, 2025
1 parent b333612 commit 8435c30
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/docs/guides/tracking/objects.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,11 @@ Saving an object with a name will create the first version of that object if it

<Tabs groupId="programming-language" queryString>
<TabItem value="python" label="Python" default>
You can call `.delete()` on any object Ref to delete the object.
You can call `.delete()` on any object Ref to delete that version of the object.

```python
weave.init('intro-example')
cat_names_ref = weave.ref('cat-names')
cat_names_ref = weave.ref('cat-names:v1')
cat_names_ref.delete()
```

Expand Down
4 changes: 2 additions & 2 deletions docs/docs/guides/tracking/ops.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,11 +161,11 @@ export WEAVE_PRINT_CALL_LINK=false

<Tabs groupId="programming-language" queryString>
<TabItem value="python" label="Python" default>
You can call `.delete()` on any op Ref to delete the op.
You can call `.delete()` on any op Ref to delete that version of the op.

```python
weave.init('intro-example')
my_op_ref = weave.ref('track_me')
my_op_ref = weave.ref('track_me:v1')
my_op_ref.delete()
```

Expand Down

0 comments on commit 8435c30

Please sign in to comment.