From 9aa1a77e5a2b087a4b20470425229ab72142b066 Mon Sep 17 00:00:00 2001 From: Jacob Leksan <63938553+jmleksan@users.noreply.github.com> Date: Thu, 13 Mar 2025 15:55:17 -0400 Subject: [PATCH] Remove unused PySide6.QtGui import This import was causing issues with pyinstaller since pyside6 was required although unused in this file. --- Custom_Widgets/Qss/SvgToPngIcons.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/Custom_Widgets/Qss/SvgToPngIcons.py b/Custom_Widgets/Qss/SvgToPngIcons.py index f66a237..dbaa822 100644 --- a/Custom_Widgets/Qss/SvgToPngIcons.py +++ b/Custom_Widgets/Qss/SvgToPngIcons.py @@ -32,8 +32,6 @@ def set_dll_search_path(): from Custom_Widgets.Log import * -from PySide6.QtGui import QColor - class NewIconsGenerator(QObject): def __init__(self, arg): super(NewIconsGenerator, self).__init__()