There was an error while loading. Please reload this page.
1 parent 489bd10 commit 26bfda8Copy full SHA for 26bfda8
1 file changed
backend/src/acidwatch_api/models/phpitz.py
@@ -72,7 +72,9 @@ async def run(self) -> RunResult:
72
)
73
74
final_concentrations: dict[str, float] = {
75
- component: data["end_ppm"] for component, data in parsed_data.items()
+ component: data["end_ppm"]
76
+ for component, data in parsed_data.items()
77
+ if component != "CO2"
78
}
79
80
return (final_concentrations, TextResult(data=result))
0 commit comments