From b3b4bc0df589019781d9b37f5570400db8051235 Mon Sep 17 00:00:00 2001 From: Laurent LAPORTE Date: Mon, 11 Mar 2024 19:45:27 +0100 Subject: [PATCH] fix(thermals): add missing `Thermal870Properties` and `ThermalCostGeneration` classes in `__all__` --- .../rawstudy/model/filesystem/config/thermal.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/antarest/study/storage/rawstudy/model/filesystem/config/thermal.py b/antarest/study/storage/rawstudy/model/filesystem/config/thermal.py index 7ac4c9224c..86a75608bb 100644 --- a/antarest/study/storage/rawstudy/model/filesystem/config/thermal.py +++ b/antarest/study/storage/rawstudy/model/filesystem/config/thermal.py @@ -7,14 +7,16 @@ from antarest.study.storage.rawstudy.model.filesystem.config.identifier import IgnoreCaseIdentifier __all__ = ( - "LocalTSGenerationBehavior", "LawOption", - "ThermalClusterGroup", - "ThermalProperties", - "ThermalConfig", + "LocalTSGenerationBehavior", "Thermal860Config", "Thermal870Config", + "Thermal870Properties", + "ThermalClusterGroup", + "ThermalConfig", "ThermalConfigType", + "ThermalCostGeneration", + "ThermalProperties", "create_thermal_config", )