Skip to content

Commit 128fd9c

Browse files
committed
testing
1 parent 42c8a05 commit 128fd9c

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/update_docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: update_docker
22
on:
33
push:
44
branches:
5-
- docker
5+
- main
66
paths:
7-
- 'requirements.txt'
7+
- 'docker/Dockerfile'
88
# only run when a commit has changes in the requirements.txt file
99

1010
jobs:

examples/graph_of_convex_sets.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,11 @@ print("A potential path is", [(point.x, point.y) for point in path])
9999
This minimal example demonstrates a concept that can be applied to the entire belief state of the robot. Let's load a more complex environment and look at the connectivity of it.
100100

101101
```{code-cell} ipython2
102+
import os
102103
from semantic_world.adapters.urdf import URDFParser
103104
104-
apartment = "../resources/urdf/kitchen.urdf"
105+
apartment = os.path.realpath(os.path.join(os.path.dirname(__file__), '..', '..', 'resources/urdf/kitchen.urdf'))
106+
105107
apartment_parser = URDFParser(apartment)
106108
world = apartment_parser.parse()
107109

0 commit comments

Comments
 (0)