2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-05-02 13:28:49 +00:00

use static reference

this is stupid but is required
This commit is contained in:
Matthias 2022-05-15 16:50:17 +02:00
parent 0c0b2efbe0
commit 076098a0e0
No known key found for this signature in database
GPG Key ID: AB6D0E6C4CB65093
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ __all__ = [
'registry', 'registry',
'InvenTreePlugin', 'InvenTreePlugin',
IntegrationPluginBase, 'IntegrationPluginBase',
'MixinNotImplementedError', 'MixinNotImplementedError',
'MixinImplementationError', 'MixinImplementationError',
] ]

View File

@ -5,5 +5,5 @@ Import helper for events
from plugin.base.event.events import trigger_event from plugin.base.event.events import trigger_event
__all__ = [ __all__ = [
trigger_event, 'trigger_event',
] ]