From daee18adb9931042cb6764f3c30004526e10773e Mon Sep 17 00:00:00 2001 From: Ivan Cvitkovic Date: Wed, 3 Jul 2024 12:54:49 -0700 Subject: [PATCH] Re-add function argument (#69) --- isacc_messaging/api/isacc_record_creator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/isacc_messaging/api/isacc_record_creator.py b/isacc_messaging/api/isacc_record_creator.py index d92965c..346af7c 100644 --- a/isacc_messaging/api/isacc_record_creator.py +++ b/isacc_messaging/api/isacc_record_creator.py @@ -417,6 +417,6 @@ def execute_requests(self) -> Tuple[List[dict], List[dict]]: return successes, errors - def process_cr(self, cr: CommunicationRequest): + def process_cr(self, cr: CommunicationRequest, successes: list): status, statusReason = self.dispatch_cr(cr=cr) return status, statusReason