From ddcb98819600f2128b7afff733f05ebdf00e473a Mon Sep 17 00:00:00 2001 From: ali <117142933+muhammad-ali-e@users.noreply.github.com> Date: Wed, 8 Jan 2025 10:53:37 +0530 Subject: [PATCH] Modified susbscription path with latest (#1054) --- backend/account_v2/subscription_loader.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/backend/account_v2/subscription_loader.py b/backend/account_v2/subscription_loader.py index 133a4d9eb..13fe05a6c 100644 --- a/backend/account_v2/subscription_loader.py +++ b/backend/account_v2/subscription_loader.py @@ -88,7 +88,9 @@ def validate_etl_run(org_id: str) -> bool: A boolean indicating whether the pre-run check passed or not. """ try: - from pluggable_apps.subscription.subscription_helper import SubscriptionHelper + from pluggable_apps.subscription_v2.subscription_helper import ( + SubscriptionHelper, + ) except ModuleNotFoundError: logger.error("Subscription plugin not found.") return False