resolve ununsed code imports

This commit is contained in:
Bastian Schroll 2016-11-20 13:34:24 +01:00
parent e3b3377f9e
commit edfc38bffb
6 changed files with 4 additions and 14 deletions

View file

@ -9,15 +9,13 @@ FFAgent-Plugin to send FMS-, ZVEI- and POCSAG - messages to FF-Agent
@requires: FFAgent-Configuration has to be set in the config.ini
"""
import time
import logging # Global logger
import hmac, hashlib
import json, requests
import string
from includes import globalVars # Global variables
from includes.helper import timeHandler
'from includes.helper import timeHandler
from includes.helper import configHandler
##

View file

@ -9,13 +9,12 @@ Pushover-Plugin to send FMS-, ZVEI- and POCSAG - messages to Pushover Clients
@requires: Pushover-Configuration has to be set in the config.ini
"""
import time
import logging # Global logger
import httplib #for the HTTP request
import urllib
from includes import globalVars # Global variables
from includes.helper import timeHandler
'from includes.helper import timeHandler
from includes.helper import configHandler
##

View file

@ -9,13 +9,12 @@ SMS77-Plugin to send FMS-, ZVEI- and POCSAG - messages to SMS77
@requires: SMS77-Configuration has to be set in the config.ini
"""
import time
import logging # Global logger
import httplib #for the HTTP request
import urllib
from includes import globalVars # Global variables
from includes.helper import timeHandler
'from includes.helper import timeHandler
from includes.helper import configHandler
##

View file

@ -15,10 +15,7 @@ httpRequest-Plugin to dispatch FMS-, ZVEI- and POCSAG - messages to an URL
# Imports
#
import urllib2
import urllib
import time
import logging # Global logger
import string
from includes import globalVars # Global variables
# Helper function, uncomment to use

View file

@ -10,9 +10,6 @@ notifyMyAndroid-Plugin to dispatch FMS-, ZVEI- and POCSAG-messages via UDP/TCP
"""
import logging # Global logger
import socket # for connection
import json # for data-transfer
import csv # for loading the APIKeys

View file

@ -18,7 +18,7 @@ import os
from includes import globalVars
from includes.helper import timeHandler
'from includes.helper import timeHandler
from includes.helper import wildcardHandler
from includes.helper import configHandler