Skip to content

Commit 26bfda8

Browse files
Remove Co2 from final concs
1 parent 489bd10 commit 26bfda8

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

backend/src/acidwatch_api/models/phpitz.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,9 @@ async def run(self) -> RunResult:
7272
)
7373

7474
final_concentrations: dict[str, float] = {
75-
component: data["end_ppm"] for component, data in parsed_data.items()
75+
component: data["end_ppm"]
76+
for component, data in parsed_data.items()
77+
if component != "CO2"
7678
}
7779

7880
return (final_concentrations, TextResult(data=result))

0 commit comments

Comments
 (0)