feat: removed extra comma

This commit is contained in:
Muhammad Zubair
2023-06-22 21:31:00 +05:00
committed by Phillip Shiu
parent ee968a1431
commit 3e9038efcc

View File

@@ -116,6 +116,6 @@ def expire_and_create_entitlements(self, entitlements, support_user):
LOGGER.info('created new entitlement with id %d in a correspondence of above expired entitlement', new_entitlement.id) # lint-amnesty, pylint: disable=line-too-long
except Exception as exc:
LOGGER.exception('Failed to expire entitlements that reached their expiration period',) # pylint: disable=broad-except
LOGGER.exception('Failed to expire entitlements that reached their expiration period') # pylint: disable=broad-except
LOGGER.info('Successfully completed the task expire_and_create_entitlements after examining %d entries', entitlements.count()) # lint-amnesty, pylint: disable=line-too-long