__init__.py 237 B

1234567891011
  1. import warnings
  2. import textwrap as text
  3. from .rover import Rover
  4. def main():
  5. warnings.warn(text.dedent(
  6. """
  7. There is still no command line for Rover.
  8. Use a Python shell to interact with Rover.
  9. """))