diff --git a/fishy/engine/fullautofisher/calibrator.py b/fishy/engine/fullautofisher/calibrator.py index 237751a..a660529 100644 --- a/fishy/engine/fullautofisher/calibrator.py +++ b/fishy/engine/fullautofisher/calibrator.py @@ -8,10 +8,7 @@ import numpy as np from fishy.engine.fullautofisher.engine import FullAuto from pynput import keyboard, mouse -from fishy.helper import hotkey from fishy.helper.config import config -from fishy.helper.helper import wait_until -from fishy.helper.hotkey import Key mse = mouse.Controller() kb = keyboard.Controller() diff --git a/fishy/engine/fullautofisher/controls.py b/fishy/engine/fullautofisher/controls.py index 979ddc7..a05cb1b 100644 --- a/fishy/engine/fullautofisher/controls.py +++ b/fishy/engine/fullautofisher/controls.py @@ -1,6 +1,6 @@ import logging -from fishy.helper import hotkey, helper +from fishy.helper import hotkey from fishy.engine.fullautofisher.engine import FullAuto, State from fishy.helper.hotkey import Key diff --git a/fishy/engine/fullautofisher/engine.py b/fishy/engine/fullautofisher/engine.py index 8316bd1..dea0233 100644 --- a/fishy/engine/fullautofisher/engine.py +++ b/fishy/engine/fullautofisher/engine.py @@ -1,19 +1,12 @@ import math -import os -import tempfile import traceback -import uuid from enum import Enum from threading import Thread -from zipfile import ZipFile import cv2 import logging import time -import numpy as np -import pytesseract - from fishy.constants import libgps, fishyqr, lam2 from fishy.engine.fullautofisher.qr_detection import get_values_from_image, get_qr_location from fishy.engine.semifisher.fishing_mode import FishingMode @@ -25,10 +18,8 @@ from fishy.engine.semifisher import fishing_mode, fishing_event from fishy.engine.common.IEngine import IEngine from pynput import keyboard, mouse -from fishy.helper import hotkey, helper, hotkey_process -from fishy.helper.config import config -from fishy.helper.helper import sign, addon_exists -from fishy.helper.hotkey import Key +from fishy.helper import hotkey, helper +from fishy.helper.helper import sign mse = mouse.Controller() kb = keyboard.Controller() diff --git a/fishy/engine/fullautofisher/test.py b/fishy/engine/fullautofisher/test.py index 66cc863..ea50efa 100644 --- a/fishy/engine/fullautofisher/test.py +++ b/fishy/engine/fullautofisher/test.py @@ -1,7 +1,6 @@ import logging from fishy.engine.fullautofisher.engine import FullAuto -from fishy.helper.config import config class Test: