Skip to content

Commit

Permalink
error handling for queued tc steps
Browse files Browse the repository at this point in the history
  • Loading branch information
rclarke0 committed Oct 8, 2024
1 parent 384492d commit 46d6953
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion abr-testing/abr_testing/data_collection/read_robot_logs.py
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,10 @@ def thermocycler_commands(file_results: Dict[str, Any]) -> Dict[str, float]:
or commandType == "thermocycler/closeLid"
):
lid_engagements += 1
if commandType == "thermocycler/setTargetBlockTemperature":
if (
commandType == "thermocycler/setTargetBlockTemperature"
and command["status"] != "queued"
):
block_temp = command["params"]["celsius"]
block_temp_changes += 1
block_on_time = datetime.strptime(
Expand Down

0 comments on commit 46d6953

Please sign in to comment.