Cosmetic tweaks

This commit is contained in:
Dom 2024-07-12 19:55:03 +01:00
parent a7070f5ef5
commit 1f83971dcd
2 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
{
"NotificationsSent": [
"UID1",
"UID1",
"UID1"
"UID2",
"UID3"
]
}

View File

@ -48,7 +48,7 @@ def isIDInSentNotifications(inboundPlanId):
else:
return False
def isShipmentWithinSpecifiedDelta(shipmentCreationTime):
def isShipmentWithinSpecifiedDelta(shipmentCreationTime, delta=360):
currentTime = datetime.now()
shipmentTime = datetime.strptime(shipmentCreationTime, '%Y-%m-%dT%H:%M:%SZ')
timeDelta = currentTime - shipmentTime
@ -57,7 +57,7 @@ def isShipmentWithinSpecifiedDelta(shipmentCreationTime):
log(f'Shipment creation time: {shipmentTime}', 'info')
log(f'Time delta: {timeDelta}', 'info')
if timeDelta < timedelta(minutes=360):
if timeDelta < timedelta(minutes=delta):
return True
else:
return False