From edb41245120b5b3761c09653650edabd351ef3ba Mon Sep 17 00:00:00 2001 From: Adam Date: Wed, 18 Feb 2026 00:49:07 -0800 Subject: [PATCH] Fix bulkupdate 500 error: remove unused version arg from retrieve_organization call (#523) --- rorapi/common/csv_update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rorapi/common/csv_update.py b/rorapi/common/csv_update.py index df12c45..2299e2a 100644 --- a/rorapi/common/csv_update.py +++ b/rorapi/common/csv_update.py @@ -13,7 +13,7 @@ def update_record_from_csv(csv_data, version): errors = [] updated_record = None print("updating record from csv") - existing_org_errors, existing_org = retrieve_organization(csv_data['id'], version) + existing_org_errors, existing_org = retrieve_organization(csv_data['id']) print(existing_org) if existing_org is None: errors.append("No existing record found for ROR ID '{}'".format(csv_data['id']))