Skip to content

Commit

Permalink
Add docstrings for top-level scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Jcparkyn committed Nov 20, 2023
1 parent 5d95814 commit 4b8d1e5
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions python/main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
from app.app import main

"""Runs the main application."""

if __name__ == "__main__":
main()
3 changes: 3 additions & 0 deletions python/run_marker_tracker.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
from app.marker_tracker import run_tracker

"""
This is a utility script to run the marker tracker without any of the other parts (BLE, filtering, GUI, etc).
"""

if __name__ == "__main__":
run_tracker(None)

0 comments on commit 4b8d1e5

Please sign in to comment.