- Replace 153 broad `except Exception` with specific types (SQLAlchemyError, TemplateError, OSError, SMTPException, ClientError, etc.) across 37 services - Break catalog↔inventory circular dependency (IMPORT-004) - Create 19 skeleton test files for MOD-024 coverage - Exclude aggregator services from MOD-024 (false positives) - Update test mocks to match narrowed exception types Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
13 lines
270 B
Python
13 lines
270 B
Python
# app/modules/monitoring/models/__init__.py
|
|
"""
|
|
Monitoring module database models.
|
|
|
|
Provides monitoring-related models including capacity snapshots.
|
|
"""
|
|
|
|
from app.modules.monitoring.models.capacity_snapshot import CapacitySnapshot
|
|
|
|
__all__ = [
|
|
"CapacitySnapshot",
|
|
]
|