Source code for canns.pipeline.asa_gui.analysis_modes.batch_mode

"""Batch analysis mode placeholder."""

from __future__ import annotations

from PySide6.QtWidgets import QLabel, QVBoxLayout, QWidget

from .base import AbstractAnalysisMode


[docs] class BatchMode(AbstractAnalysisMode):
[docs] name = "batch"
[docs] display_name = "Batch"
[docs] def create_params_widget(self) -> QWidget: widget = QWidget() layout = QVBoxLayout(widget) layout.addWidget(QLabel("Batch mode parameters will be added here.")) return widget
[docs] def collect_params(self) -> dict: return {}