소스 검색

Add a UserWarning about the CLI interface

Oz N Tiram 4 년 전
부모
커밋
4376eb6d20
1개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  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.
+        """))