mirror of
https://github.com/Schrolli91/BOSWatch.git
synced 2026-01-07 17:10:02 +01:00
resolve ununsed code imports
This commit is contained in:
parent
e3b3377f9e
commit
edfc38bffb
|
|
@ -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
|
||||
|
||||
##
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
##
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
##
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue