From fadc868adbb8588e52bb559a1a73966a4f031c00 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Thu, 24 Oct 2024 14:07:28 +0530 Subject: [PATCH] Revert "fix: apply travelperk sync fix to all existing accounts" This reverts commit bdb2a2772d92b90f2d79865ba9b2ac642e1e2d9f. --- scripts/python/sync_all_travelperk_accounts.py | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 scripts/python/sync_all_travelperk_accounts.py diff --git a/scripts/python/sync_all_travelperk_accounts.py b/scripts/python/sync_all_travelperk_accounts.py deleted file mode 100644 index 1b4d626..0000000 --- a/scripts/python/sync_all_travelperk_accounts.py +++ /dev/null @@ -1,8 +0,0 @@ -from apps.travelperk.models import TravelperkCredential -from apps.travelperk.serializers import SyncPaymentProfileSerializer - - -all_creds = TravelperkCredential.objects.all() - -for creds in all_creds: - SyncPaymentProfileSerializer().sync_payment_profiles(creds.org_id)