From 0f45cbf272d31a5f0b1188a7e3aa460346a302b4 Mon Sep 17 00:00:00 2001 From: Dunestorm Date: Mon, 10 Feb 2025 20:15:05 +0000 Subject: [PATCH] LiquidGUI [1.3.0.0] - Continued refactoring. --- .../liquidctl_helper_linux.py | 0 .../liquidctl_helper_windows.py | 0 main.pyw | 4 ++-- 3 files changed, 2 insertions(+), 2 deletions(-) rename liquidctl_helper_linux.py => helpers/liquidctl_helper_linux.py (100%) rename liquidctl_helper_windows.py => helpers/liquidctl_helper_windows.py (100%) diff --git a/liquidctl_helper_linux.py b/helpers/liquidctl_helper_linux.py similarity index 100% rename from liquidctl_helper_linux.py rename to helpers/liquidctl_helper_linux.py diff --git a/liquidctl_helper_windows.py b/helpers/liquidctl_helper_windows.py similarity index 100% rename from liquidctl_helper_windows.py rename to helpers/liquidctl_helper_windows.py diff --git a/main.pyw b/main.pyw index cbd4f9b..1d26fc6 100644 --- a/main.pyw +++ b/main.pyw @@ -18,12 +18,12 @@ from MessageHandler import MessageHandler import globals from styles import Labels if globals.os == "Windows": - from liquidctl_helper_windows import LiquidCTL_Helper + from helpers.liquidctl_helper_windows import LiquidCTL_Helper from vitals_helper import VitalsHelperWindows as VitalsHelper import win32mica # type: ignore import darkdetect # type: ignore elif globals.os == "Linux": - from liquidctl_helper_linux import LiquidCTL_Helper + from helpers.liquidctl_helper_linux import LiquidCTL_Helper from vitals_helper import VitalsHelperLinux as VitalsHelper