Spaces:
Runtime error
Runtime error
File size: 553 Bytes
4149ca9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | from dataclasses import dataclass
from matplotlib.figure import Figure
@dataclass
class ResultData:
"""
Données de sortie du calcul d'estimation de l'impact
"""
energy_consumption: str
carbon_footprint: str
abiotic_resource_usage: str
water_usage: str
eq_energy_consumption: str
eq_carbon_footprint: str
eq_abiotic_resources: str
eq_water_usage: str
carbon_footprint_chart: Figure
abiotic_resource_chart: Figure
water_usage_chart: Figure
more_frugal_conf: str
percentage_reduction: str
|