2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-16 20:15:44 +00:00

fix reused builtins

This commit is contained in:
Matthias
2022-01-21 00:17:52 +01:00
parent cbd84a23f9
commit c44565f9e3
7 changed files with 31 additions and 31 deletions

View File

@ -173,8 +173,8 @@ class IntegrationPluginBase(MixinBase, plugin_base.InvenTreePluginBase):
"""
License of plugin
"""
license = getattr(self, 'LICENSE', None)
return license
lic = getattr(self, 'LICENSE', None)
return lic
# endregion
@property