From 9f8617d1f0f7a22207412201f0bab55e1bbc85f8 Mon Sep 17 00:00:00 2001 From: Shon <120038448+shon-button@users.noreply.github.com> Date: Mon, 6 Jan 2025 10:17:28 -0500 Subject: [PATCH] Update bc_obps/reporting/service/report_verification_service.py Co-authored-by: Pierre Bastianelli --- bc_obps/reporting/service/report_verification_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bc_obps/reporting/service/report_verification_service.py b/bc_obps/reporting/service/report_verification_service.py index cc38db076b..de20695297 100644 --- a/bc_obps/reporting/service/report_verification_service.py +++ b/bc_obps/reporting/service/report_verification_service.py @@ -79,7 +79,7 @@ def get_report_needs_verification(version_id: int) -> bool: if registration_purpose in REGULATED_OPERATION_PURPOSES: return True - # Emission threshold: verification data is required if the registration purpose is Reporting Operation, and total TCo₂e >+ 25,000 + # Emission threshold: verification data is required if the registration purpose is Reporting Operation, and total TCo₂e >= 25,000 if registration_purpose == Operation.Purposes.REPORTING_OPERATION: attributable_emissions = ComplianceService.get_emissions_attributable_for_reporting(version_id) return attributable_emissions >= ATTRIBUTABLE_EMISSION_THRESHOLD