diff --git a/adafruit_shell.py b/adafruit_shell.py index e685a26..b6355ee 100644 --- a/adafruit_shell.py +++ b/adafruit_shell.py @@ -25,7 +25,6 @@ import sys import os import shutil import subprocess -import shlex import fcntl import platform import fileinput diff --git a/test.py b/test.py deleted file mode 100644 index 5ca5fd6..0000000 --- a/test.py +++ /dev/null @@ -1,20 +0,0 @@ -try: - from adafruit_shell import Shell -except ImportError: - raise RuntimeError( - "The library 'adafruit_shell' was not found. To install, try typing: sudo pip3 install adafruit-python-shell" - ) - -shell = Shell() -shell.group = "Blinka" - - -def main(): - # shell.clear() - print("Running test") - shell.run_command("./test.sh") - - -# Main function -if __name__ == "__main__": - main() diff --git a/test.sh b/test.sh deleted file mode 100755 index 65df885..0000000 --- a/test.sh +++ /dev/null @@ -1,6 +0,0 @@ -#! /bin/bash ->&2 echo This should go to stderr -echo Interactive Test ->&2 echo This should also go to stderr -read -p "Hello, who am I speaking to? " NAME -echo It\'s Nice to meet you $NAME