From 1b47f2aa99aa5f554ecaed774bb1f6b25762b75e Mon Sep 17 00:00:00 2001 From: PEDZEO Date: Sun, 21 Dec 2025 04:38:42 +0300 Subject: [PATCH] Remove unused imports from partner_stats_service.py to streamline the code and improve readability. --- app/services/partner_stats_service.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/services/partner_stats_service.py b/app/services/partner_stats_service.py index f5c2b254..9948568c 100644 --- a/app/services/partner_stats_service.py +++ b/app/services/partner_stats_service.py @@ -10,12 +10,9 @@ from sqlalchemy import and_, case, desc, func, select from sqlalchemy.ext.asyncio import AsyncSession from app.database.models import ( - Payment, ReferralEarning, Subscription, SubscriptionStatus, - Transaction, - TransactionType, User, )