Spaces:
Running
Running
fix: update module name in docstring and usage
Browse files- echo/__main__.py +2 -2
echo/__main__.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
"""Entry point for python -m
|
| 2 |
|
| 3 |
import sys
|
| 4 |
import logging
|
|
@@ -61,7 +61,7 @@ def main():
|
|
| 61 |
print("A companion robot that remembers you and grows with you.")
|
| 62 |
print()
|
| 63 |
print("Usage:")
|
| 64 |
-
print(" python -m
|
| 65 |
print()
|
| 66 |
print("For real robot:")
|
| 67 |
print(" 1. Install: pip install -e ~/apps/reachy/apps/echo")
|
|
|
|
| 1 |
+
"""Entry point for python -m echo."""
|
| 2 |
|
| 3 |
import sys
|
| 4 |
import logging
|
|
|
|
| 61 |
print("A companion robot that remembers you and grows with you.")
|
| 62 |
print()
|
| 63 |
print("Usage:")
|
| 64 |
+
print(" python -m echo --sim # Simulation mode (no robot)")
|
| 65 |
print()
|
| 66 |
print("For real robot:")
|
| 67 |
print(" 1. Install: pip install -e ~/apps/reachy/apps/echo")
|