Skip to content

Commit

Permalink
Fix plugin startup (#1)
Browse files Browse the repository at this point in the history
* make imports relativ and sort imports

* add init
  • Loading branch information
matmair authored Aug 11, 2022
1 parent dc76da6 commit 4131827
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Empty file added __init__.py
Empty file.
7 changes: 3 additions & 4 deletions inventree_bulk/bulk_plugin.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
from plugin import InvenTreePlugin

from inventree_bulk.version import BULK_PLUGIN_VERSION
from plugin.mixins import SettingsMixin, PanelMixin

from plugin.mixins import PanelMixin, SettingsMixin
from stock.views import StockLocationDetail

from .version import BULK_PLUGIN_VERSION


class BulkActionPlugin(SettingsMixin, PanelMixin, InvenTreePlugin):
AUTHOR = "wolflu05"
Expand Down

0 comments on commit 4131827

Please sign in to comment.