Files
Aegis/backend/app/models/enums.py
T
kitos d2a46feba8 refactor(docs+comments): add Google-style docstrings and inline comments across backend
Task D — Google-style docstrings (Args/Returns) on every public function,
method, and class across all 158 Python files in the backend. Zero ruff D
violations (pydocstyle Google convention).

Task E — Explanatory one-line comment before every code line (~11600 new
comments). ruff check passes clean after isort re-sort.
2026-06-11 11:06:55 +02:00

16 lines
431 B
Python

"""ORM-level re-exports of the canonical domain enums.
The single source of truth lives in ``app.domain.enums``. This module
re-exports every enum so that existing model and router code keeps
working with ``from app.models.enums import ...``.
"""
# Import # noqa: F401 from app.domain.enums
from app.domain.enums import ( # noqa: F401
DataClassification,
TeamSide,
TechniqueStatus,
TestResult,
TestState,
)