From 8655115cca12a47db288821d423a6cb2ddffcc24 Mon Sep 17 00:00:00 2001 From: Tyler Date: Mon, 30 Mar 2026 14:12:35 -0700 Subject: [PATCH] fix to too many processes --- main.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index d214187..8368c5d 100644 --- a/main.py +++ b/main.py @@ -1749,8 +1749,6 @@ class ParamSection(QWidget): self.dependencies = [] self.selected_path = None - # Load the mne data in a seperate process - self.file_executor = concurrent.futures.ProcessPoolExecutor(max_workers=1) # Title label title_label = QLabel(section_data["title"]) @@ -4616,6 +4614,9 @@ class MainApplication(QMainWindow): self.setWindowTitle(f"{APP_NAME.upper()}") self.setGeometry(100, 100, 1280, 720) + # Load the mne data in a seperate process + self.file_executor = concurrent.futures.ProcessPoolExecutor(max_workers=1) + self.about = None self.help = None self.optodes = None