From ff0557f8f7f6394cc17caa0bff63638368598413 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 31 Jan 2026 01:13:46 +0000 Subject: [PATCH 1/2] Initial plan From ba30db15d2a83b251653364f1e9206a3ca609e8f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 31 Jan 2026 01:16:36 +0000 Subject: [PATCH 2/2] Fix PyInstaller ImportError by replacing relative imports with absolute imports Co-authored-by: hackolite <826027+hackolite@users.noreply.github.com> --- node_editor/node_editor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/node_editor/node_editor.py b/node_editor/node_editor.py index fcb5e438..a8ea140d 100644 --- a/node_editor/node_editor.py +++ b/node_editor/node_editor.py @@ -13,8 +13,8 @@ import dearpygui.dearpygui as dpg from node.node_factory import NodeFactory import time -from .style import STYLE -from .util import _dpg_lock # Import shared DearPyGUI lock +from node_editor.style import STYLE +from node_editor.util import _dpg_lock # Import shared DearPyGUI lock from src.utils.logging import get_logger dpg.create_context()