Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed a typo #100

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@ If you wish to use gennav in a ROS based stack, check out [gennav_ros](https://g

## Contributions

Contributions are always welcome. We reccomend you check out [contribution guidelines](./CONTRIBUTION.md) and view the [docs](https://gennav.readthedocs.io/en/latest/index.html) beforehand.
Contributions are always welcome. We recommend you check out [contribution guidelines](./CONTRIBUTION.md) and view the [docs](https://gennav.readthedocs.io/en/latest/index.html) beforehand.
2 changes: 2 additions & 0 deletions gennav/planners/rrt/rrg.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,8 @@ def plan(self, start, end, env):
if len(path) != 1:
print("Goal Reached!")
path = Trajectory(path)
# from gennav.envs.common import visualize_path # module for visualizing path
# visualize_path(path, env)

if len(path.path) == 1:
raise PathNotFound(path, message="Path contains only one state")
Expand Down