From 4cfec331470726fe6998093748fe8fea41055e7c Mon Sep 17 00:00:00 2001 From: Alireza Adli Date: Sun, 1 Dec 2024 12:09:59 -0500 Subject: [PATCH] Correct the methods descriptions --- lca_carbon_workflow.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lca_carbon_workflow.py b/lca_carbon_workflow.py index cbff523..539e1a2 100644 --- a/lca_carbon_workflow.py +++ b/lca_carbon_workflow.py @@ -42,12 +42,12 @@ class LCACarbonWorkflow: It puts out the results of opening and envelop emission for each mentioned cycle separately. Final results will be stored in the below attributes: - building_envelope_emission: - building_opening_emission: - building_component_emission: - building_envelope_end_of_life_emission: - building_opening_end_of_life_emission: - building_component_end_of_life_emission: + building_envelope_emission: float + building_opening_emission: float + building_component_emission: float + building_envelope_end_of_life_emission: float + building_opening_end_of_life_emission: float + building_component_end_of_life_emission: float The above attributes will be computed when the calculate_emission() method of a LCACarbonWorkflow object is called.