Explorar el Código

Add a UserWarning about the CLI interface

Oz N Tiram hace 4 años
padre
commit
4376eb6d20
Se han modificado 1 ficheros con 10 adiciones y 0 borrados
  1. 10 0
      src/rover/__init__.py

+ 10 - 0
src/rover/__init__.py

@@ -1 +1,11 @@
+import warnings
+import textwrap as text
+
 from .rover import Rover
+
+def main():
+    warnings.warn(text.dedent(
+        """
+        There is still no command line for Rover.
+        Use a Python shell to interact with Rover.
+        """))