diff --git a/server/server.py b/server/server.py index 3e1ab46a..71cf3db2 100644 --- a/server/server.py +++ b/server/server.py @@ -50,14 +50,6 @@ from http.server import BaseHTTPRequestHandler, HTTPServer, ThreadingHTTPServer from socketserver import ThreadingMixIn -# Required module: pycryptodome -try: - import Crypto - from Crypto.Cipher import AES # PyCrypto -except ImportError: - Crypto = AES = None - import pyaes # https://github.com/ricmoo/pyaes - # Terminal color capability for all platforms try: from colorama import init @@ -67,7 +59,7 @@ import tinytuya -BUILD = "t9" +BUILD = "t10" # Defaults APIPORT = 8888