1
0
mirror of https://github.com/bec-project/bec_widgets.git synced 2026-04-24 01:00:45 +02:00
This commit is contained in:
2026-03-16 15:30:45 +01:00
parent 4b69dbda0b
commit d35ce15f68
+5 -1
View File
@@ -4,10 +4,14 @@ from typing import TYPE_CHECKING
from bec_lib.utils.import_utils import lazy_import_from
from bec_widgets.cli.constants import IGNORE_WIDGETS
from bec_widgets.utils.bec_plugin_helper import get_all_plugin_widget_references
from bec_widgets.utils.plugin_utils import get_custom_class_references
try:
from bec_widgets.cli.constants import IGNORE_WIDGETS
except ModuleNotFoundError: # pragma: no cover
IGNORE_WIDGETS = ["LaunchWindow"]
if TYPE_CHECKING: # pragma: no cover
from bec_widgets.utils.bec_widget import BECWidget