diff --git a/InvenTree/InvenTree/settings.py b/InvenTree/InvenTree/settings.py index a73d2952de..5c67dc69f5 100644 --- a/InvenTree/InvenTree/settings.py +++ b/InvenTree/InvenTree/settings.py @@ -755,7 +755,6 @@ for plugin in PLUGIN_DIRS: # collect integration plugins INTEGRATION_PLUGINS = [] -INTEGRATION_PLUGIN_SETTINGS = {} INTEGRATION_PLUGIN_SETTING = {} INTEGRATION_PLUGIN_LIST = {} INTEGRATION_APPS_LOADED = False # Marks if apps were reloaded yet diff --git a/InvenTree/plugin/apps.py b/InvenTree/plugin/apps.py index 3144a7bfe2..639f43bd55 100644 --- a/InvenTree/plugin/apps.py +++ b/InvenTree/plugin/apps.py @@ -19,7 +19,6 @@ class PluginConfig(AppConfig): if plugin.mixin_enabled('settings'): plugin_setting = plugin.settingspatterns settings.INTEGRATION_PLUGIN_SETTING[slug] = plugin_setting - settings.INTEGRATION_PLUGIN_SETTINGS.update(plugin_setting) InvenTreeSetting.GLOBAL_SETTINGS.update(plugin_setting) # if plugin apps are enabled