From 5f82454d9529ddf34dedf78da3c9e03339bd2e1f Mon Sep 17 00:00:00 2001 From: wakonig_k Date: Fri, 2 May 2025 09:58:38 +0200 Subject: [PATCH] build: fix entry point path and add auto_updates directory --- pyproject.toml | 2 +- xtreme_bec/bec_widgets/auto_updates/__init__.py | 0 2 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 xtreme_bec/bec_widgets/auto_updates/__init__.py diff --git a/pyproject.toml b/pyproject.toml index 4e1f716..3b1a399 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,7 +34,7 @@ plugin_ipython_client_pre = "xtreme_bec.bec_ipython_client.startup.pre_startup" plugin_ipython_client_post = "xtreme_bec.bec_ipython_client.startup" [project.entry-points."bec.widgets.auto_updates"] -plugin_widgets_update = "xtreme_bec.bec_widgets.auto_updates:PlotUpdate" +plugin_widgets_update = "xtreme_bec.bec_widgets.auto_updates" [project.entry-points."bec.widgets.user_widgets"] plugin_widgets = "xtreme_bec.bec_widgets.widgets" diff --git a/xtreme_bec/bec_widgets/auto_updates/__init__.py b/xtreme_bec/bec_widgets/auto_updates/__init__.py new file mode 100644 index 0000000..e69de29 -- 2.49.1