From d11013336e56e83517eb90dae5a36b9c5f68d876 Mon Sep 17 00:00:00 2001 From: Bernhard Lang Date: Mon, 23 Mar 2026 19:57:58 +0100 Subject: [PATCH] fixed CustomExt import in custom extension template --- .../extensions/custom_extension_template.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pymodaq_plugins_template/extensions/custom_extension_template.py b/src/pymodaq_plugins_template/extensions/custom_extension_template.py index 134974e..0accd26 100644 --- a/src/pymodaq_plugins_template/extensions/custom_extension_template.py +++ b/src/pymodaq_plugins_template/extensions/custom_extension_template.py @@ -5,7 +5,7 @@ from pymodaq_utils.logger import set_logger, get_module_name from pymodaq.utils.config import get_set_preset_path -from pymodaq.extensions.utils import CustomExt +from pymodaq.extensions.custom_ext import CustomExt # todo: replace here *pymodaq_plugins_template* by your plugin package name