simplify syntax

This commit is contained in:
Matthias 2021-11-04 13:08:30 +01:00
parent 285e6fe93e
commit 2fc8efbfb2
No known key found for this signature in database
GPG Key ID: F50EF5741D33E076

View File

@ -356,12 +356,7 @@ class IntegrationPluginBase(MixinBase, plugin.InvenTreePlugin):
def set_package(self): def set_package(self):
"""add packaging info of the plugins into plugins context""" """add packaging info of the plugins into plugins context"""
if self.is_package: package = self.get_package_metadata() if self.is_package else self.get_package_commit()
# is a package - no commit
package = self.get_package_metadata()
else:
# fetch git commit
package = self.get_package_commit()
# process date # process date
if package.get('date'): if package.get('date'):