Skip to content

Commit

Permalink
WIP: fix entity
Browse files Browse the repository at this point in the history
  • Loading branch information
grtlr committed Nov 4, 2024
1 parent a242daa commit 9d14402
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/snippets/all/archetypes/graph_directed.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
)
# Note: We log to the same entity here.
rr.log(
"edges",
"simple",
rr.GraphEdges(edges=[("a", "b"), ("b", "c"), ("c", "a")], graph_type="directed"),
)
2 changes: 1 addition & 1 deletion docs/snippets/all/archetypes/graph_undirected.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
)
# Note: We log to the same entity here.
rr.log(
"edges",
"simple",
# `graph_type` is optional, graphs are undirected by default.
rr.GraphEdges(edges=[("a", "b"), ("b", "c"), ("c", "a")], graph_type="undirected"),
)

0 comments on commit 9d14402

Please sign in to comment.