mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
PEP fixes
This commit is contained in:
parent
c41f16837d
commit
1aafec7107
@ -47,14 +47,14 @@ class PluginConfig(models.Model):
|
|||||||
if not self.active:
|
if not self.active:
|
||||||
name += '(not active)'
|
name += '(not active)'
|
||||||
return name
|
return name
|
||||||
|
|
||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, *args, **kwargs):
|
||||||
super().__init__(*args, **kwargs)
|
super().__init__(*args, **kwargs)
|
||||||
self.__org_active = self.active
|
self.__org_active = self.active
|
||||||
|
|
||||||
def save(self, force_insert=False, force_update=False, *args, **kwargs):
|
def save(self, force_insert=False, force_update=False, *args, **kwargs):
|
||||||
"""extend save method to reload plugins if the 'active' status changes"""
|
"""extend save method to reload plugins if the 'active' status changes"""
|
||||||
ret = super().save(force_insert, force_update, *args, **kwargs)
|
ret = super().save(force_insert, force_update, *args, **kwargs)
|
||||||
app = apps.get_app_config('plugin')
|
app = apps.get_app_config('plugin')
|
||||||
|
|
||||||
if self.active is False and self.__org_active is True:
|
if self.active is False and self.__org_active is True:
|
||||||
@ -64,4 +64,3 @@ class PluginConfig(models.Model):
|
|||||||
app.reload_plugins()
|
app.reload_plugins()
|
||||||
|
|
||||||
return ret
|
return ret
|
||||||
|
|
||||||
|
@ -29,7 +29,7 @@ def get_modules(pkg, recursive: bool = False):
|
|||||||
"""get all modules in a package"""
|
"""get all modules in a package"""
|
||||||
if not recursive:
|
if not recursive:
|
||||||
return [importlib.import_module(name) for finder, name, ispkg in iter_namespace(pkg)]
|
return [importlib.import_module(name) for finder, name, ispkg in iter_namespace(pkg)]
|
||||||
|
|
||||||
context = {}
|
context = {}
|
||||||
for loader, name, ispkg in pkgutil.walk_packages(pkg.__path__):
|
for loader, name, ispkg in pkgutil.walk_packages(pkg.__path__):
|
||||||
try:
|
try:
|
||||||
|
Loading…
Reference in New Issue
Block a user