Python 64.6%
TypeScript 33.7%
CSS 0.8%
1"""Ready-made workbook specs. Each template returns a `create_excel` spec (dict)."""23from __future__ import annotations45from collections.abc import Callable6from typing import Any78from app.tools.excel_templates import (9 age_vie,10 comparables_ajustes,11 methode_du_cout,12 sensibilite,13 six_fonctions,14 tableau_amortissement,15)1617TEMPLATES: dict[str, Callable[[dict[str, Any]], dict[str, Any]]] = {18 "methode_du_cout": methode_du_cout.build,19 "comparables_ajustes": comparables_ajustes.build,20 "age_vie": age_vie.build,21 "tableau_amortissement": tableau_amortissement.build,22 "six_fonctions": six_fonctions.build,23 "sensibilite": sensibilite.build,24}25