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