From 3e789ca35b6d0cf2d8ae9677bc65b7f0ca4eabc7 Mon Sep 17 00:00:00 2001 From: wakonig_k Date: Wed, 4 Jun 2025 10:45:52 +0200 Subject: [PATCH] refactor(image_item): removed outdated image item config --- bec_widgets/widgets/plots/image/image_item.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/bec_widgets/widgets/plots/image/image_item.py b/bec_widgets/widgets/plots/image/image_item.py index 92f8a687..360d2e72 100644 --- a/bec_widgets/widgets/plots/image/image_item.py +++ b/bec_widgets/widgets/plots/image/image_item.py @@ -21,9 +21,6 @@ logger = bec_logger.logger # noinspection PyDataclass class ImageItemConfig(ConnectionConfig): # TODO review config parent_id: str | None = Field(None, description="The parent plot of the image.") - monitor: str | None = Field(None, description="The name of the monitor.") - monitor_type: Literal["1d", "2d", "auto"] = Field("auto", description="The type of monitor.") - source: str | None = Field(None, description="The source of the curve.") color_map: str | None = Field("plasma", description="The color map of the image.") downsample: bool | None = Field(True, description="Whether to downsample the image.") opacity: float | None = Field(1.0, description="The opacity of the image.")