remove pickle imports

This commit is contained in:
Wolfgang Hottgenroth 2019-07-16 14:19:13 +02:00
parent 8fa69d1610
commit 6243cad505
Signed by: wn
GPG Key ID: 6C1E5E531E0D5D7F
2 changed files with 0 additions and 10 deletions

View File

@ -4,8 +4,6 @@ import cmd
import re
import io
import datetime
import pickle
import sys
import RegisterDatapoint
import logging
@ -326,13 +324,6 @@ class CmdInterpreter(cmd.Cmd):
self.__println("Usage: load")
self.__println("Reload the register file, overwrite all unsaved changes.")
#def do_shutdown(self, arg):
# sys.exit()
#def help_shutdown(self):
# self.__println("Usage: shutdown")
# self.__println("Shuts down the application")
class CmdHandle(socketserver.StreamRequestHandler):

View File

@ -4,7 +4,6 @@ from pymodbus.exceptions import ModbusIOException
import MqttProcessor
import logging
import json
import pickle
class JsonifyEncoder(json.JSONEncoder):