Optimize plugin imports

Signed-off-by: Edward Medvedev <edward.medvedev@gmail.com>
This commit is contained in:
Edward Medvedev 2019-10-26 18:36:42 +03:00
parent 0a33f9c0af
commit ea51ab7014
No known key found for this signature in database
GPG Key ID: F29B9D98505AFD45
3 changed files with 2 additions and 8 deletions

View File

@ -12,7 +12,6 @@ Aircrack-ng needed, to install:
import logging
import subprocess
import string
import re
import os
OPTIONS = dict()

View File

@ -11,14 +11,10 @@ import time
import glob
import pwnagotchi.grid as grid
import pwnagotchi.utils as utils
from pwnagotchi.ui.components import LabeledValue
from pwnagotchi.ui.view import BLACK
import pwnagotchi.ui.fonts as fonts
from pwnagotchi.utils import WifiInfo, extract_from_pcap
from pwnagotchi.utils import StatusFile, WifiInfo, extract_from_pcap
OPTIONS = dict()
REPORT = utils.StatusFile('/root/.api-report.json', data_format='json')
REPORT = StatusFile('/root/.api-report.json', data_format='json')
UNREAD_MESSAGES = 0
TOTAL_MESSAGES = 0

View File

@ -10,7 +10,6 @@ https://raw.githubusercontent.com/systemik/pwnagotchi-bt-tether/master/GPS-via-P
'''
import logging
import json
import requests
OPTIONS = dict()