From 7361a9637a24292df1cfe4a71c5ad172937077e2 Mon Sep 17 00:00:00 2001 From: Matthias Date: Wed, 11 May 2022 13:49:49 +0200 Subject: [PATCH] move event back --- InvenTree/plugin/__init__.py | 2 +- InvenTree/plugin/{base/event => }/events.py | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename InvenTree/plugin/{base/event => }/events.py (100%) diff --git a/InvenTree/plugin/__init__.py b/InvenTree/plugin/__init__.py index 3e2aa48b47..94ff41e9ea 100644 --- a/InvenTree/plugin/__init__.py +++ b/InvenTree/plugin/__init__.py @@ -3,7 +3,7 @@ Utility file to enable simper imports """ from .registry import registry -from .base.event.events import trigger_event +from .events import trigger_event from .plugin import InvenTreePluginBase, IntegrationPluginBase from .base.action.action import ActionPlugin diff --git a/InvenTree/plugin/base/event/events.py b/InvenTree/plugin/events.py similarity index 100% rename from InvenTree/plugin/base/event/events.py rename to InvenTree/plugin/events.py