From d7de7238fffcc2414685ce12a80662cd72e4c90e Mon Sep 17 00:00:00 2001 From: Samir Boulahtit Date: Fri, 30 Jan 2026 19:54:15 +0100 Subject: [PATCH] chore: remove legacy feature.py re-export Feature is now only in app/modules/billing/models/ (canonical location). Co-Authored-By: Claude Opus 4.5 --- models/database/feature.py | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 models/database/feature.py diff --git a/models/database/feature.py b/models/database/feature.py deleted file mode 100644 index cce38526..00000000 --- a/models/database/feature.py +++ /dev/null @@ -1,22 +0,0 @@ -# models/database/feature.py -""" -DEPRECATED: This module re-exports from the canonical location. - -Feature is now part of the billing module. -Please update imports to use: - from app.modules.billing.models import Feature, FeatureCode, FeatureCategory, FeatureUILocation -""" - -from app.modules.billing.models import ( - Feature, - FeatureCategory, - FeatureCode, - FeatureUILocation, -) - -__all__ = [ - "Feature", - "FeatureCategory", - "FeatureCode", - "FeatureUILocation", -]