simplify code

This commit is contained in:
Matthias 2022-01-11 01:18:51 +01:00
parent fa6a20712f
commit d215af45f1
No known key found for this signature in database
GPG Key ID: F50EF5741D33E076

View File

@ -114,10 +114,7 @@ class IntegrationPluginBase(MixinBase, plugin.InvenTreePlugin):
"""
Human readable name of plugin
"""
human_name = getattr(self, 'PLUGIN_TITLE', None)
if not human_name:
human_name = self.plugin_name()
return human_name
return self.plugin_title()
@property
def description(self):