Tidied up imports.

This commit is contained in:
Adam 2025-03-26 20:32:56 +00:00
parent a026c8b37a
commit 1d60fa3bd7
7 changed files with 4 additions and 28 deletions

View File

@ -1,13 +1,4 @@
import sys from .rsi_client import RSIClient
import os
import threading
import multiprocessing
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "..")))
from src.RSIPI.rsi_client import RSIClient
from src.RSIPI.graphing import RSIGraphing
class RSICommandLineInterface: class RSICommandLineInterface:
"""Command-Line Interface for controlling RSI Client.""" """Command-Line Interface for controlling RSI Client."""

View File

@ -1,5 +1,4 @@
import xml.etree.ElementTree as ET import xml.etree.ElementTree as ET
import logging
class ConfigParser: class ConfigParser:
"""Handles parsing the RSI config file and generating structured send/receive variables.""" """Handles parsing the RSI config file and generating structured send/receive variables."""

View File

@ -1,14 +1,9 @@
import sys
import os
import socket import socket
import time import time
import xml.etree.ElementTree as ET import xml.etree.ElementTree as ET
import logging import logging
import threading import threading
from .rsi_config import RSIConfig
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "..")))
from src.RSIPI.rsi_config import RSIConfig
# ✅ Configure Logging # ✅ Configure Logging
LOGGING_ENABLED = True LOGGING_ENABLED = True

View File

@ -1,10 +1,8 @@
import time import time
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt import matplotlib.pyplot as plt
import matplotlib.animation as animation import matplotlib.animation as animation
from collections import deque from collections import deque
from src.RSIPI.rsi_client import RSIClient from .rsi_client import RSIClient
class RSIGraphing: class RSIGraphing:
"""Handles real-time and CSV-based graphing for RSI analysis with alerts and threshold monitoring.""" """Handles real-time and CSV-based graphing for RSI analysis with alerts and threshold monitoring."""

View File

@ -1,5 +1,4 @@
from src.RSIPI.rsi_client import RSIClient from .rsi_client import RSIClient
import rsi_api
from time import sleep from time import sleep
if __name__ == "__main__": if __name__ == "__main__":

View File

@ -1,11 +1,9 @@
import multiprocessing import multiprocessing
import socket import socket
import time import time
import csv import csv
import logging import logging
import xml.etree.ElementTree as ET # ✅ FIX: Import ElementTree import xml.etree.ElementTree as ET # ✅ FIX: Import ElementTree
from .config_parser import ConfigParser
from .xml_handler import XMLGenerator from .xml_handler import XMLGenerator

View File

@ -1,10 +1,6 @@
import unittest import unittest
from time import sleep from time import sleep
from rsi_api import RSIAPI from rsi_api import RSIAPI
import os
import sys
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..')))
class TestRSIPI(unittest.TestCase): class TestRSIPI(unittest.TestCase):