Files
group_fqcd_jr/app/model/risk_questionnaire.py

12 lines
466 B
Python

"""Compatibility exports for opening-risk questionnaire profiles.
The canonical ``profile_snapshots`` mapping lives in ``app.model.profile``. Keeping
two declarative classes for the same table makes SQLAlchemy reject model imports,
so this module re-exports the canonical class for existing callers.
"""
from app.model.fund import FundRiskAssessment as RiskAssessment
from app.model.profile import ProfileSnapshot
__all__ = ["ProfileSnapshot", "RiskAssessment"]