From 19cfa540d9b67ad75a8093a707a84b0d616354ea Mon Sep 17 00:00:00 2001 From: Matthias Date: Wed, 11 May 2022 14:06:11 +0200 Subject: [PATCH] add export definition --- InvenTree/plugin/events.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/InvenTree/plugin/events.py b/InvenTree/plugin/events.py index f6bc7fd7a8..193a1805fe 100644 --- a/InvenTree/plugin/events.py +++ b/InvenTree/plugin/events.py @@ -3,3 +3,7 @@ Import helper for events """ from plugin.base.event.events import trigger_event + +__all__ = [ + trigger_event, +]