mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
PEP fixes
This commit is contained in:
parent
4c7d1e6658
commit
2498cbde79
@ -2,9 +2,7 @@
|
||||
|
||||
""" This module provides template tags for handeling plugins
|
||||
"""
|
||||
from django.utils.translation import ugettext_lazy as _
|
||||
from django.conf import settings as djangosettings
|
||||
|
||||
from django import template
|
||||
|
||||
|
||||
@ -16,6 +14,7 @@ def plugin_list(*args, **kwargs):
|
||||
""" Return a list of all installed integration plugins """
|
||||
return djangosettings.INTEGRATION_PLUGIN_LIST
|
||||
|
||||
|
||||
@register.simple_tag()
|
||||
def plugin_settings(plugin, *args, **kwargs):
|
||||
""" Return a list of all settings for a plugin """
|
||||
|
@ -54,7 +54,7 @@ def get_plugins(pkg, baseclass):
|
||||
return plugins
|
||||
|
||||
|
||||
def load_plugins(name:str, module, cls):
|
||||
def load_plugins(name: str, module, cls):
|
||||
"""general function to load a plugin class
|
||||
|
||||
:param name: name of the plugin for logs
|
||||
|
Loading…
Reference in New Issue
Block a user