diff --git a/filetransfer.py b/filetransfer.py deleted file mode 100644 index 675bbc2fdbbf018cc81ae87fdae5a18cb48e6f4f..0000000000000000000000000000000000000000 --- a/filetransfer.py +++ /dev/null @@ -1,16 +0,0 @@ -""" -SFTP class for downloading files from the server, useless in production -""" -import subprocess - - -# TODO: with pysftp - -class FileTransfer: - - def connect(self, user, host, password): - user_host = [user, host] - subprocess.Popen(user_host) - - def file(self): - return 0