2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-15 11:35:41 +00:00

refactor events

This commit is contained in:
Matthias
2022-05-11 13:28:59 +02:00
parent 5a139ec74b
commit 970503f424
10 changed files with 39 additions and 31 deletions

View File

@ -2,12 +2,13 @@
Utility class to enable simpler imports
"""
from ..base.integration.mixins import APICallMixin, AppMixin, LabelPrintingMixin, SettingsMixin, EventMixin, ScheduleMixin, UrlsMixin, NavigationMixin, PanelMixin
from ..base.integration.mixins import APICallMixin, AppMixin, LabelPrintingMixin, SettingsMixin, ScheduleMixin, UrlsMixin, NavigationMixin, PanelMixin
from common.notifications import SingleNotificationMethod, BulkNotificationMethod
from ..base.action.mixins import ActionMixin
from ..base.barcodes.mixins import BarcodeMixin
from ..base.events.mixins import EventMixin
__all__ = [
'APICallMixin',