Skip to content
This repository has been archived by the owner on May 4, 2024. It is now read-only.

Commit

Permalink
Wrote some doc string for a_star_navigator
Browse files Browse the repository at this point in the history
  • Loading branch information
RK22000 committed Mar 24, 2024
1 parent 85961db commit 74d958e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/sphinx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
path: docs/_build/html/
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/main'
if: github.ref == 'refs/heads/sphinx_docs'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/_build/html
6 changes: 6 additions & 0 deletions unified_frameworks/a_star_navigator.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
"""
This is a navigator that implementes an A* stearch in a continous space
to find a path from the current position to the destination position
bla bla bla
"""
import sys
import re
root = (next(re.finditer(".*unified_frameworks", __file__)).group())
Expand Down

0 comments on commit 74d958e

Please sign in to comment.