diff --git a/pwnagotchi/plugins/default/AircrackOnly.py b/pwnagotchi/plugins/default/AircrackOnly.py index a8402097..e6860810 100644 --- a/pwnagotchi/plugins/default/AircrackOnly.py +++ b/pwnagotchi/plugins/default/AircrackOnly.py @@ -12,7 +12,6 @@ Aircrack-ng needed, to install: import logging import subprocess import string -import re import os OPTIONS = dict() diff --git a/pwnagotchi/plugins/default/grid.py b/pwnagotchi/plugins/default/grid.py index e0c6aa96..c15b4658 100644 --- a/pwnagotchi/plugins/default/grid.py +++ b/pwnagotchi/plugins/default/grid.py @@ -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 diff --git a/pwnagotchi/plugins/default/paw-gps.py b/pwnagotchi/plugins/default/paw-gps.py index 02c827e6..a5268c42 100644 --- a/pwnagotchi/plugins/default/paw-gps.py +++ b/pwnagotchi/plugins/default/paw-gps.py @@ -10,7 +10,6 @@ https://raw.githubusercontent.com/systemik/pwnagotchi-bt-tether/master/GPS-via-P ''' import logging -import json import requests OPTIONS = dict()