Skip to content

Commit

Permalink
fix python path in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
Lars Berscheid committed Jul 16, 2021
1 parent 5c10d1a commit 693005e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/position.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from sys import path

# Path to the build directory including a file similar to 'ruckig.cpython-37m-x86_64-linux-gnu'.
build_path = Path(__file__).parent.parent / 'build'
build_path = Path(__file__).parent.absolute().parent / 'build'
path.insert(0, str(build_path))

from ruckig import InputParameter, OutputParameter, Result, Ruckig
Expand Down
2 changes: 1 addition & 1 deletion examples/position_offline.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from sys import path

# Path to the build directory including a file similar to 'ruckig.cpython-37m-x86_64-linux-gnu'.
build_path = Path(__file__).parent.parent / 'build'
build_path = Path(__file__).parent.absolute().parent / 'build'
path.insert(0, str(build_path))

from ruckig import InputParameter, Ruckig, Trajectory, Result
Expand Down

0 comments on commit 693005e

Please sign in to comment.